Signature on top of every post
-
Hi,
I want to show a shordcode on top of every post. Now I have the code below, which is working, but it shows the shortcode on the bottom of every post. So now my question is: How do I get it on top?
Best regards
Puffinadd_filter('the_content','add_signature'); function add_signature($text) { global $post; if($post->post_type == 'post') $text .= '<div class="signature"> [JuraID] </div>'; return $text;
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Signature on top of every post’ is closed to new replies.