项目作者: ItinerisLtd

项目描述 :
Import HubSpot blog posts into WordPress
高级语言: PHP
项目地址: git://github.com/ItinerisLtd/wp-hubspot-importer.git
创建时间: 2019-04-10T16:44:18Z
项目社区:https://github.com/ItinerisLtd/wp-hubspot-importer

开源协议:MIT License

下载


WP HubSpot Importer

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

  1. $ 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

  1. $ wp hubspot import
  2. Importing from HubSpot...
  3. Fetching HubSpot blog topics...
  4. Success: Fetched Blog Topic: Blog (1111111111)
  5. Success: Fetched Blog Topic: News (2222222222)
  6. Fetching HubSpot blog posts updated since Tue, 23 Apr 2019 12:19:15 +0000...
  7. Success: Imported Blog Post: I am the blog post title (3333333333)
  8. Success: Imported Blog Post: Hello World (4444444444)
  9. 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

  1. $wpPostId = 999;
  2. // Returns '1234567890'
  3. 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.

  1. $wpPostId = 999;
  2. // Returns 'https://cdn2.hubspot.net/hubfs/1234566/xxx.jpeg'
  3. 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 :star::star::star::star::star: review?

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

Testing

  1. $ composer phpstan:analyse
  2. $ 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"">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.