| 1 |
<?php |
| 2 |
|
| 3 |
if ( ! defined( 'ABSPATH' ) ) { |
| 4 |
exit; // Exit if accessed directly |
| 5 |
} |
| 6 |
|
| 7 |
?> |
| 8 |
|
| 9 |
<div class="juicer-guide"> |
| 10 |
<div class="juicer-guide__content"> |
| 11 |
<h2>Juicer Plugin Guide</h2> |
| 12 |
<p>Sign up via <a href="https://www.juicer.io/sign-up" target="_blank">juicer.io</a> and create a feed for free. (It only takes a minute)</p> |
| 13 |
<p>Once you've done that you can use the shortcode:</p> |
| 14 |
<pre>[juicer name='YOUR_FEED_NAME']</pre> |
| 15 |
<p>To get your Juicer feed name:</p> |
| 16 |
<ol> |
| 17 |
<li>Sign into your account on <a href="https://www.juicer.io/log-in" target="_blank">juicer.io</a></li> |
| 18 |
<li>Navigate to <a href="https://www.juicer.io/dashboard" target="_blank">juicer.io/dashboard</a></li> |
| 19 |
<li>You will be taken to a url like https://www.juicer.io/feeds/feed-slug</li> |
| 20 |
<li>The '<code>feed-slug</code>' portion of the url is your feed name.</li> |
| 21 |
<li>To use a shortcode for the embed feed try <code>[juicer name='feed-slug']</code></li> |
| 22 |
<li>Make sure you replace the value <code>feed-slug</code> of <code>name</code> attribute above with your feeds name.</li> |
| 23 |
</ol> |
| 24 |
<p>Alternatively, you can add the feed to your template directly if you like using PHP. Here's an example:</p> |
| 25 |
<pre><?php juicer_feed('name=juicer'); ?></pre> |
| 26 |
<br /> |
| 27 |
<p>Note: For more advanced usage, please refer to the documentation -> <a href="https://help.juicer.io/hc/en-us/articles/360039929412-Code-customizations-for-date-range-feed-style-spacing-filtering-and-more" target="_blank">Customization options</a></p> |
| 28 |
</div> |
| 29 |
</div> |
| 30 |
|
| 31 |
|