一种简单的方法是过滤post_thumbnail_html
, 要添加默认图像链接,请执行以下操作:
<?php
function wpse55748_filter_post_thumbnail_html( $html ) {
// If there is no post thumbnail,
// Return a default image
if ( \'\' == $html ) {
return \'<img src="\' . get_template_directory_uri() . \'/images/default-thumbnail.png" width="150px" height="100px" class="image-size-name" />\';
}
// Else, return the post thumbnail
return $html;
}
add_filter( \'post_thumbnail_html\', \'wpse55748_filter_post_thumbnail_html\' );
?>
您可以使此过滤器更复杂,但这应该可以让您开始。