Forums

[resolved] Display a message in single if the post isn't from admin (4 posts)

  1. Dennis
    Member
    Posted 5 months ago #

    Hello,

    I'm trying to make an extra advice when the single post isn't from the author admin. I already tring some things, but didn't work.

    I tried something like this:

    <?php if (is_author('1')): ?>
    
    <div> --content-- </div>
    
    <?php else: ?>
    
    <div> --content 2-- </div>
    
    <?php endif; ?>

    This have to be placed before the "the_content"

  2. esmi
    Theme Diva & Forum Moderator
    Posted 5 months ago #

    Try

    <?php if( $post->post_author == 1 ) :?> <div> --content-- </div>
    <?php else:?><div> --content 2-- </div>
    <?php endif; ?>
  3. Dennis
    Member
    Posted 5 months ago #

    Work just perfect! Thanks esmi.

  4. Dennis
    Member
    Posted 5 months ago #

    Ah, remember another think. Don't have sure if you can help. But is it possible with tag? For example, if have tag X?

Reply

You must log in to post.

About this Topic