Changeset 2587866
- Timestamp:
- 08/24/2021 02:37:27 PM (5 years ago)
- Location:
- mondoplayer/trunk
- Files:
-
- 2 edited
-
includes/class_mondoplayer_categories.php (modified) (2 diffs)
-
mondoplayer.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mondoplayer/trunk/includes/class_mondoplayer_categories.php
r2587458 r2587866 907 907 <tr><td class='label_column' style='border: 0'>Category RSS Feed</td><td class='content_column' style='border: 0;vertical-align: middle'><div class='category_description'><div style='display: inline-block;' id='category_rss_feed'><a href='<?php echo $feed_url ?>' target="_blank"><?php echo $feed_url ?></a></div><p>Use this RSS Feed to automatically post to your social media management tools (e.g. Hootsuite).</p><span id='autopilot_category_message'></span></div></td></tr> 908 908 <tr><td class='label_column' style='border: 0'>Category RSS Feed with Hashtags</td><td class='content_column' style='border: 0;vertical-align: middle'><div class='category_description'><div style='display: inline-block;' id='category_rss_feed'><a href='<?php echo $feed_url ?>?hashtags' target="_blank"><?php echo $feed_url ?>?hashtags</a></div><p>Use this RSS Feed to automatically post to your social media management tools and include any AutoPilot hashtags.</p><span id='autopilot_hashtag_message'></span></div></td></tr> 909 <tr><td class='label_column' style='border: 0'>Category RSS Feed with Hashtags in Description</td><td class='content_column' style='border: 0;vertical-align: middle'><div class='category_description'><div style='display: inline-block;' id='category_rss_feed'><a href='<?php echo $feed_url ?>?hashtags_description' target="_blank"><?php echo $feed_url ?>?hashtags_description</a></div><p>Use this RSS Feed to automatically post to your social media management tools for sites like Pinterest.</p><span id='autopilot_hashtag_message'></span></div></td></tr> 909 910 910 911 </table> … … 938 939 } 939 940 } 940 941 941 942 942 $page_count = ceil(count($categories)/$posts_per_page); -
mondoplayer/trunk/mondoplayer.php
r2587769 r2587866 5 5 Description: Video Content Curation Plugin - automatically curate and share videos. Boost engagement on your website and in social media with compelling video. 6 6 Author: MondoTag 7 Version: 1.0.31 67 Version: 1.0.317 8 8 Tested up to: 5.7.2 9 9 License: GPLv2 or later … … 64 64 add_filter( 'the_content', array($this, 'filter_content')); 65 65 add_filter( 'the_title_rss', array($this, 'filter_title_rss')); 66 add_filter( 'the_excerpt_rss', array($this, 'filter_excerpt_rss')); 66 67 add_action( 'template_redirect', array($this, 'filter_410'), -1); 67 68 … … 379 380 return $title; 380 381 } 382 function filter_excerpt_rss($excerpt) { 383 #error_log("Filtering title: $title"); 384 if (isset($_GET['hashtags_description'])) { 385 global $post; 386 $hashtags = get_post_meta($post->ID, 'mondoplayer_hashtags', true); 387 #error_log("hashtags: $hashtags"); 388 if (! empty($hashtags)) { 389 return $excerpt . "\n" . $hashtags; 390 } 391 } 392 return $excerpt; 393 } 381 394 382 395 function cron_job() {
Note: See TracChangeset
for help on using the changeset viewer.