itinerisltd/wp-hubspot-importer

Import HubSpot blog posts into WordPress.

Installs: 3 791

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 10

Forks: 0

Open Issues: 10

Type:wordpress-plugin


README

CircleCI Packagist Version PHP from Packagist Packagist Downloads GitHub License Hire Itineris

Goal

Import HubSpot blog posts into WordPress.

Minimum Requirements

  • PHP v7.3
  • WordPress v5.1

Installation

Composer (Recommended)

$ composer require itinerisltd/wp-hubspot-importer

Classic

Download wp-hubspot-importer.zip from GitHub releases Then, install as usual

Usage

OAuth2 Authorization

  1. Head to WP Dashboard > Tools > WP HubSpot Importer
  2. Authenticate WP HubSpot Importer to use HubSpot API on your behalf

Importing from HubSpot to WordPress

$ wp hubspot import
Importing from HubSpot...
Fetching HubSpot blog topics...
Success: Fetched Blog Topic: Blog (1111111111)
Success: Fetched Blog Topic: News (2222222222)
Fetching HubSpot blog posts updated since Tue, 23 Apr 2019 12:19:15 +0000...
Success: Imported Blog Post: I am the blog post title (3333333333)
Success: Imported Blog Post: Hello World (4444444444)
Success: Finished at Tue, 23 Apr 2019 12:20:38 +0000

Data Structure

By default, WP HubSpot Importer imports:

See: BlogPostRepo::upsert

These can be customized by defining your own container via the wp_hubspot_importer_container_init filter.

HubSpot Blog Post ID

$wpPostId = 999;

// Returns '1234567890'
get_post_meta($wpPostId, Container::HUBSPOT_BLOG_POST_ID_META_KEY, true);

Featured Image URL

Featured images are not imported to WordPress media library, but the URLs are stored as custom post meta.

$wpPostId = 999;

// Returns 'https://cdn2.hubspot.net/hubfs/1234566/xxx.jpeg'
get_post_meta($wpPostId, Container::HUBSPOT_FEATURED_IMAGE_URL_META_KEY, true);

FAQ

Will you add support for older PHP versions?

Never! This plugin will only works on actively supported PHP versions.

Don't use it on end of life or security fixes only PHP versions.

It looks awesome. Where can I find some more goodies like this?

Besides wp.org, where can I give a ⭐⭐⭐⭐⭐ review?

Thanks! Glad you like it. It's important to let my boss knows somebody is using this project. Please consider:

Testing

$ composer phpstan:analyse
$ composer style:check

Pull requests without tests will not be accepted!

Feedback

Please provide feedback! We want to make this library useful in as many projects as possible. Please submit an issue and point out what you do and don't like, or fork the project and make suggestions. No issue is too small.

Change Log

Please see CHANGELOG for more information on what has changed recently.

Security

If you discover any security related issues, please email hello@itineris.co.uk instead of using the issue tracker.

Credits

WP HubSpot Importer is a Itineris Limited project created by Tang Rufus.

Full list of contributors can be found here.

License

WP HubSpot Importer is released under the MIT License.