Site logo

Archived topic

Different Text for a single Page

7 replies · Started by Todd on April 9, 2018

Viewing posts 1–8 of 8

Is there a filter that would let me put in different text on a single page or 2 for the footer?

This seems like this be the way to change the format not the content itself?

Leo, that worked great. Thank you. I was able to get a message to show up on one page using the following. How do I add a class to this so I could style the content?

<?php if ( is_page( 101 ) ) : ?>
    TESTING Content will ONLY show in static pages
<?php endif; ?>

It would be the same as regular HTML:

<?php if ( is_page( 101 ) ) : ?>
    <div class="message">TESTING Content will ONLY show in static pages</div>
<?php endif; ?>

Got it. Very Helpful. Thank you.

No problem :)

This archived topic is closed to new replies.