Expose Hubspot API features in Twig and pull in content from your HubSpot Portal.
This plugin requires Craft CMS 3.0.0-beta.23 or later.
To install the plugin, follow these instructions.
-
Open your terminal and go to your Craft project:
cd /path/to/project
-
Then tell Composer to load the plugin:
composer require guilty/hubspot-connector
-
In the Control Panel, go to Settings → Plugins and click the “Install” button for HubSpot Connector.
- Go the the admin panel
- Go to the settings page
- Click on "HubSpot Connector" under the "Plugins" section
- Enter your Hubspot API key and click Save.
- Done
Here is a basic example, for more comprehensive examples and documentation check the wiki
{% for blog in craft.hubspot.blogs %}
<a href="{{ blog.root_url }}">
<h4>{{ blog.id }} - {{ blog.name }}</h4>
</a>
{% for post in craft.hubspot.blogPosts(blog.id) %}
<hr>
<article>
<h5>
<a href="{{ post.published_url }}">
{{ post.html_title }}
</a>
</h5>
{{ post.post_summary | striptags }}
</article>
{% endfor %}
{% endfor %}
Brought to you by Guilty AS
The HubSpot logo and Trademark is the property of Hubspot Inc