Combining Conditional Tags? For sidebar display.
-
I want to add the meta and blogroll section from the sidebar to all my pages, categories, archive, etc. I tried putting:
<?php if ( is_page() ) { ?>
It worked, but it’s only for “When any Page is being displayed.” It excludes category and archive pages. Now how can I combine this into one line:
<?php if ( is_page() ) { ?>
<?php if ( is_category() ) { ?>
<?php if ( is_archive() ) { ?>And is there a conditional tag that works for all pages no matter what’s in it?
Reference: https://codex.www.ads-software.com/Conditional_Tags
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Combining Conditional Tags? For sidebar display.’ is closed to new replies.