Guest User

Untitled

a guest
Dec 11th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. if (!function_exists ( 'display_series_thumbs' ) )
  2. {
  3.     function display_series_thumbs()
  4.     {
  5.         // check if the thumbnails exist
  6.         if ( has_post_thumbnail() ) {
  7.             the_post_thumbnail( $post->ID, 'post-series-thumbnail',array('title' => "") );
  8.         } else {
  9.         // if they don't, use the default one
  10.         ?>
  11.             <img class="post-series-default-thumb" src="#" alt="<?php the_title(); ?>" />
  12.         <?php
  13.         }
  14.     }
  15. }
Add Comment
Please, Sign In to add comment