Kod tylko dla single page custom post
Jeśli potrzebujemy zamieścić np w headerze lub footerze kod który pobierany jest tylko na wpisach stworzonego custom post’a możemy skorzystać z kodu:
<?php if ( is_singular('project') ) { ?> <?php if ( has_post_thumbnail() ) { the_post_thumbnail('full'); } ?> <?php } else { ?> <?php } ?>
Hope this helps and happy coding :)
Zobacz jeszcze
Wykaz category custom post według pola custom field
<?php $query_string2=$query_string .'&meta_key=event_date&orderby=meta_value&order=DESC&posts_per_page=12'; query_posts($query_string2); while(have_posts()):the_post();...