下面由wordpress教程栏目给大家介绍自动为wordpress文章添加特色图像的方法,希望对大家的wordpress仿站有所帮助!
WordPress的特色图像是一个很实用的功能,可以在文章列表中为每篇文章添加一张缩略图。但特色图像需要在编辑文章时手动添加很不方便,下面的代码可自动将文章中的第一张图片设置为特色图像。
将下面的代码添加到当前主题的functions.php中:
functionwpforce_featured(){global$post;$already_has_thumb=has_post_thumbnail($post->ID);if(!$already_has_thumb){$attached_image=get_children("post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1");if($attached_image){foreach($attached_imageas$attachment_id=>$attachment){set_post_thumbnail($post->ID,$attachment_id);}}}}//endfunctionadd_action('the_post','wpforce_featured');add_action('save_post','wpforce_featured');add_action('draft_to_publish','wpforce_featured');add_action('new_to_publish','wpforce_featured');add_action('pending_to_publish','wpforce_featured');add_action('future_to_publish','wpforce_featured');