在WordPress中给没有封面图的文章增加默认缩略图

2023-10-19 09:59:46 浏览数 (1)

在WordPress中给没有封面图的文章增加默认缩略图

代码语言:javascript复制
/**
 * 增加默认的文章特色图
 */
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;
}
  • MySQL多层级树形结构表的搜索查询优化
  • 使用WordPress作为小程序后端——APPID有效性前置检查
  • 使用WordPress作为小程序后端——小程序请求前置检查
  • Windows rclone挂载sftp
  • 迁移——从Electron迁移到Eclipse Theia
  • 使用typescript开发chrome扩展
  • use multiple simple queries or a join
  • php: /usr/local/lib/libcurl.so.4: no version information available (required by php)
  • how to improve the rank of search results in google
  • SEO导航

0 人点赞