Custom text below posts not working
-
I want to display custom text at the end of each post but above the related posts thumbnail.
In my previous theme it was
<?php function text_after_content($content) { if ( in_category('First') ) { $content.= "<p>Custom text 1</p>"; } if ( in_category('Second') ) { $content.= "<p>Custom text 2</p>"; } } return $content; } add_filter ('the_content', 'text_after_content'); ?>
But this no longer works on my new theme. This is the theme I’m using https://uxlthemes.com/demo/?demo=jorvik
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Custom text below posts not working’ is closed to new replies.