add something to the_content
-
hi,
i have a problem with the_content.
i want to add a div to the_content so i have created a functionfunction like_content($content) { global $post; $content = "<div class=\"ikaz\">"; $content .= "hello all"; $content .= "</div>"; $content .= $post->post_content; return $content; } add_filter( 'the_content', 'like_content' );
it works good but not formatting because of $post->post_content. what can i do for formatting it?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘add something to the_content’ is closed to new replies.