Signature under posts not displaying fully
-
I added to functions file of my childtheme following code to display text signature under all posts automatically:
// Add Signature Image after single post add_filter('the_content','add_signature', 1); function add_signature($text) { global $post; if(($post->post_type == 'post')) $text .= '<div class="signature"><signature text here></div>'; return $text; }Once I added that signature about month ago, it worked and displayed full text. Now when I look posts, it does not display full text but cuts beginning of the text. Same thing is happening for 2 different sites (2 different themes). Any idea what could be the problem? Or is there any changes in latest version od wordpress that this signature code is not working?
Thank you!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Signature under posts not displaying fully’ is closed to new replies.