您当前的位置:首页 > 程序人生 > 程序心得网站首页程序心得
自动给wordpress第一张图片变成特色图片(缩略图)
发布时间:2013-11-13编辑:admin点击数:
这个方法也是从网上找的。为了避免以后总要找所以自己保存了一下,同时为了方便其他可能需要的朋友,所以写一下这个吧。
自动把wordpress第一张图片变成特色图片以后我们就可以用wlw比较省事的去更新wordpress了。最近站群做得比较多。这个功能还是比较需要的。下面是代码。
function autoset_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_image as $attachment_id => $attachment) { set_post_thumbnail($post->ID, $attachment_id); } } } } //end functionadd_action('the_post', 'autoset_featured');add_action('save_post', 'autoset_featured');add_action('draft_to_publish', 'autoset_featured');add_action('new_to_publish', 'autoset_featured');add_action('pending_to_publish', 'autoset_featured');add_action('future_to_publish', 'autoset_featured');
关键字词:
上一篇:js生成html的实例
下一篇:二级导航被banner图片挡住