I need to add some content before post content.
I use follwoing code for it.
function theme_slug_filter_the_content( $content ) {
$custom_content="My CONTENT GOES HERE";
$custom_content .= $content;
return $custom_content;
}
add_filter( 'the_content', 'theme_slug_filter_the_content' );
Another plugin also add some content before post content.
Now my single post look like this.
Added Content From My Plugin
Added Content From Another Plugin
Post Content
But I need to change order. I need following way.
Added Content From Another Plugin
Added Content From My Plugin
Post Content
How do I do it?