• This plugin is awesome, and the work appreciated. πŸ™‚

    One way that this plugin would be the best of its type is if it filtered the post title, and programmatically was able to filter custom post fields.

    As a sample of what I am thinking is something like:

    $custom_fields = get_post_custom();
    
    foreach ( $custom_fields as $field_key => $field_values ) {
    	foreach ( $field_values as $key => $value ){
            //filter all the custom fields here with something like:
            apply_filters('the_content',$value);
     }
    }

    https://ww.wp.xz.cn/plugins/bleep-filter/

The topic ‘Suggestion: Make plugin handle all custom fields’ is closed to new replies.