/**
* 增加默认的文章特色图
*/
add_filter( 'post_thumbnail_html', 'my_post_thumbnail_html' );
function my_post_thumbnail_html( $html ) {
if ( empty( $html ) ) {
$default_images = [
get_theme_root_uri() . '/twentytwentythree/assets/images/default-featured-image-1.jpg',
get_theme_root_uri() . '/twentytwentythree/assets/images/default-featured-image-2.jpg',
get_theme_root_uri() . '/twentytwentythree/assets/images/default-featured-image-3.jpg'
];
$index = mt_rand(0, count($default_images) - 1);
$html = "<img src=\"{$default_images[$index]}\"/>";
}
return $html;
}