Import HubSpot blog posts into WordPress
Import HubSpot blog posts into WordPress.
$ composer require itinerisltd/wp-hubspot-importer
Download wp-hubspot-importer.zip
from GitHub releases
Then, install as usual
WP HubSpot Importer
to use HubSpot API on your behalf
$ 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
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.
$wpPostId = 999;
// Returns '1234567890'
get_post_meta($wpPostId, Container::HUBSPOT_BLOG_POST_ID_META_KEY, true);
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);
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.
Thanks! Glad you like it. It’s important to let my boss knows somebody is using this project. Please consider:
$ composer phpstan:analyse
$ composer style:check
Pull requests without tests will not be accepted!
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.
Please see CHANGELOG for more information on what has changed recently.
If you discover any security related issues, please email hello@itineris.co.uk"">hello@itineris.co.uk instead of using the issue tracker.
WP HubSpot Importer is a Itineris Limited project created by Tang Rufus.
Full list of contributors can be found here.
WP HubSpot Importer is released under the MIT License.