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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Wordpress - 如果未选择任何内容,则设置特色图像相关的知识,希望对你有一定的参考价值。

function set_featured_image($post_ID){

	if(!has_post_thumbnail($post_ID)){
		
		$args = array(
		    'post_parent'    => $post_ID,
		    'post_type'      => 'attachment',
		    'numberposts'    => 1,
		    'post_status'    => null,
		    'post_mime_type' => 'image',
		);
		
		if($image = get_children($args)) {
			$image = current($image);
			add_post_meta($post_ID, '_thumbnail_id', $image->ID);
		}
	}
}

add_action("publish_post", "set_featured_image");

以上是关于PHP Wordpress - 如果未选择任何内容,则设置特色图像的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress php未定义索引,表单发布到数据库

Wordpress 联系表(未找到 404)

Wordpress PHP 404 页面未返回

在wordpress中获取<p>标签内的内容

WordPress 日期选择器未出现在联系表 7 中

WordPress 中带有 jQ​​uery 的 AJAX:AJAX 调用未将属性值传递给 PHP 函数