PluginProbe
Juicer.io: Effortlessly embed, curate, and aggregate social media feeds into your website / 1.12
Juicer.io: Effortlessly embed, curate, and aggregate social media feeds into your website v1.12
1.13.0 1.12.18 1.12.5 1.12.6 1.12.7 1.12.8 1.12.9 1.2 1.3 1.3.1 1.4 1.4.1 1.5 1.6 1.6.1 1.7 1.7.1 1.7.2 1.8 1.9 1.9.2 1.9.3 1.9.4 1.9.5 1.9.6 All 46 releases
juicer / includes / admin / settings.php

settings.php in Juicer.io: Effortlessly embed, curate, and aggregate social media feeds into your website 1.12, at includes/admin/settings.php

31 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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>&lt;?php juicer_feed('name=juicer'); ?&gt;</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