header.php 616 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Post heade template
  4. *
  5. * @package vamtam/consulting
  6. */
  7. global $post;
  8. $title = get_the_title();
  9. $show = ! $blog_query->is_single() && ! has_post_format( 'status' ) && ! has_post_format( 'aside' ) && ! empty( $title );
  10. if ( $show ) :
  11. $link = has_post_format( 'link' ) ?
  12. get_post_meta( $post->ID, 'vamtam-post-format-link', true ) :
  13. get_permalink();
  14. ?>
  15. <header class="single">
  16. <div class="content">
  17. <h4>
  18. <a href="<?php echo esc_url( $link ) ?>" title="<?php the_title_attribute()?>" class="entry-title"><?php the_title(); ?></a>
  19. </h4>
  20. </div>
  21. </header>
  22. <?php
  23. endif;