Wordpress-如果未选择任何内容,则设置特色图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress-如果未选择任何内容,则设置特色图像相关的知识,希望对你有一定的参考价值。
If a post is published without setting a featured image and there is an image attachment, this will select an image from the media library and set it as the featured image.
function set_featured_image($post_ID){ if(!has_post_thumbnail($post_ID)){ 'post_parent' => $post_ID, 'post_type' => 'attachment', 'numberposts' => 1, 'post_status' => null, 'post_mime_type' => 'image', ); if($image = get_children($args)) { add_post_meta($post_ID, '_thumbnail_id', $image->ID); } } } add_action("publish_post", "set_featured_image");
以上是关于Wordpress-如果未选择任何内容,则设置特色图像的主要内容,如果未能解决你的问题,请参考以下文章
PHP Wordpress - 如果没有图像设置,则显示带有帖子的特色图像或默认图像
如果未选择任何内容,则停止 PHPStorm 剪切/复制整行
限制用户在使用 wordpress 媒体编辑器选择特色图像时裁剪图像