Advertisement
jmlapam

Untitled

Feb 20th, 2014
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. add_filter( 'post_thumbnail_html', '_default_post_image' );
  2. function _default_post_image( $html ) {
  3.  
  4. if ( empty( $html ) )
  5. $html = '<img src="' . trailingslashit( get_stylesheet_directory_uri() ) . 'images/image-fallback.png' . '" alt="" />';
  6.  
  7. return $html;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement