Plugin Directory

Changeset 2587866


Ignore:
Timestamp:
08/24/2021 02:37:27 PM (5 years ago)
Author:
crisworth
Message:

Feature update

Location:
mondoplayer/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • mondoplayer/trunk/includes/class_mondoplayer_categories.php

    r2587458 r2587866  
    907907    <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>
    908908    <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>
    909910
    910911</table>
     
    938939            }
    939940        }
    940 
    941941
    942942        $page_count = ceil(count($categories)/$posts_per_page);
  • mondoplayer/trunk/mondoplayer.php

    r2587769 r2587866  
    55    Description: Video Content Curation Plugin - automatically curate and share videos. Boost engagement on your website and in social media with compelling video.
    66    Author: MondoTag
    7     Version: 1.0.316
     7    Version: 1.0.317
    88    Tested up to: 5.7.2
    99    License: GPLv2 or later
     
    6464        add_filter( 'the_content', array($this, 'filter_content'));
    6565        add_filter( 'the_title_rss', array($this, 'filter_title_rss'));
     66        add_filter( 'the_excerpt_rss', array($this, 'filter_excerpt_rss'));
    6667        add_action( 'template_redirect', array($this, 'filter_410'), -1);
    6768
     
    379380        return $title;
    380381    }
     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    }
    381394
    382395    function cron_job() {
Note: See TracChangeset for help on using the changeset viewer.