• I’m having trouble applying filters to syndicated content (using FeedWordPress).

    The following test plugin works for content I manually post, but not for syndicated content:

    <?php
    /*
    Plugin Name: A Test plugin
    Description: A test plugin
    */
    function test_function($content=”)
    {
    return “TESTING”.$content;
    }
    add_filter(‘the_content’, ‘test_function’);
    ?>

    What is different about syndicated posts that this doesn’t work for them? I tried messing around with the wp_posts table post_author, excerpt, and guid fields to see if making those like my own posts would fix it, but that didn’t seem to work.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Trahald

    (@trahald)

    Anyone have any insights on this?

    comment out the line:

    add_filter(‘the_content’, ‘feedwordpress_restore_syndicated_content’, 10000);

    in wp-content/plugins/feedwordpress.php

    I believe (not completely sure, I just installed it) FeedWordPress prevents the filtering of syndicated content by restoring a previously saved copy of the post.

    Be aware that by doing this you’ll enable any content filtering on syndicated posts

    Thread Starter Trahald

    (@trahald)

    Thanks a lot, that’s exactly what the problem was. Much appreciated.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Filters don’t work on syndicated content’ is closed to new replies.