• We want all of Today’s posts to ignore the more tag, any post from yesterday and older should honor the more tag.

    Is this possible?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Should be. Inside the Loop, try:

    <?php if(the_date('Y-m-d') == date('Y-m-d')) the_excerpt();
    else the_content();?>
    Thread Starter mibsolutionsllc

    (@mibsolutionsllc)

    Instead of the excerpt I am talking about the ‘more’ tag

    The template tag the_content() created the ‘more’ tag on posts – hence the suggestion to use the_excerpt() where you do not want this link text shown. Did you try the code I suggested?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘The More Tag’ is closed to new replies.