silveristhenew
Forum Replies Created
-
yeah looks like i’ll be working on this one too. I have a couple other uses for filtering the content of the post but can’t seem to find a hook that works. If i find anything useful, I’ll post it here.
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
);`Forum: Plugins
In reply to: [FeedWordPress] [Plugin: FeedWordPress] Filtering… can't figure it out…I thought there was a way to do this within the plugin without using the pipes or feedrinse?