Hey Juergen,
thanks for reaching out!
1. Well to be honest the first one is doable –
example for custom post type (‘petra_product’):
add_action( 'init', 'create_post_type' );
function create_post_type() {
register_post_type( 'petra_product',
array(
'labels' => array(
'name' => __( 'Petra' ),
'singular_name' => __( 'Petra' )
),
'public' => true,
'has_archive' => true,
)
);
}
And then all you have to change is the init.php file of the plugin like so (just added the || ‘petra_product’ after ‘post’ ):
if ($content != "" && $post->post_type === 'post' || 'petra_product' && (($options["on_single_post"] && is_single()) || (is_feed() && $options["on_rss"])))
2. What exactly are you trying to achieve?
Looking forward to your reply,
Petra
Thanks for your answer.
I have been programming around with wordpress for quite a while now. And one thing I will NEVER ever do again: touch other peoples plugins or themes you use. Why not? Because with the next update your changes will be overwritten. And one is for sure: you will never be able to remember everything.
That’s why I am putting everything customized in my own plugin for that project.
And that’s why I also need the pure HTML result of a function to wrap it inside my own content filter.
Juergen