php 如果设置为无,则设置默认特色图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 如果设置为无,则设置默认特色图像相关的知识,希望对你有一定的参考价值。

//set a default featured image
function wpse55748_filter_post_thumbnail_html( $html ) {
    // If there is no post thumbnail,
    // Return a default image
    if ( '' == $html ) {
        return '<img src="/wp-content/themes/Active-Theme Child/images/default_blog.jpg" class="image-size-name" />';
    }
    // Else, return the post thumbnail
    return $html;
}
add_filter( 'post_thumbnail_html', 'wpse55748_filter_post_thumbnail_html' );

以上是关于php 如果设置为无,则设置默认特色图像的主要内容,如果未能解决你的问题,请参考以下文章

PHP Wordpress - 如果未选择任何内容,则设置特色图像

Wordpress-如果未选择任何内容,则设置特色图像

php [将图像上传到媒体库]将图像上传到媒体库并将其设置为$ post_id(如果已指定)的特色图像。 #wordpress

Spring:如果 url 的安全性设置为无,则检查代码

Wordpress-启用特色图像并设置默认大小

如果我将默认设置为无,我可以省略 Optional 吗?