what filter did you use as a starting point.
I would like to filter/change the content of a post and used the ‘Strip HTML Tags from Posts’ filter as a starting point. It worked with the last version of FWP but I can’t get it to work now.
Did something change in the latest revision
any ideas?
I am using these hooks:
`add_action(
/*hook=*/ ‘feedwordpress_admin_page_posts_meta_boxes’,
/*function=*/ array(&$this, ‘posts_meta_boxes’),
/*priority=*/ 100,
/*arguments=*/ 1
);
add_action(
/*hook=*/ ‘feedwordpress_admin_page_posts_save’,
/*function=*/ array(&$this, ‘posts_save’),
/*priority=*/ 100,
/*arguments=*/ 2
);
add_filter(
/*hook=*/ ‘the_content’,
/*function=*/ array(&$this, ‘the_content’),
/*priority=*/ 10010
);
add_filter(
/*hook=*/ ‘the_content_rss’,
/*function=*/ array(&$this, ‘the_content’),
/*priority=*/ 10010
);`