Mass post format changer?

时间:2013-03-12 作者:Cecily

嗨,我在一个有1500多个帖子的网站上工作。其中许多帖子都是以图库帖子的形式发布的,但我需要将其更改为“标准”格式,以便与客户当前的主题配合使用。

有什么方法可以让我自动化吗?enter image description here

1 个回复
SO网友:onetrickpony

备份数据库,将此代码添加到函数中。主题中的php文件:

$all_posts = get_posts(array(
  \'numberposts\' => -1,
  \'post_type\'   => \'post\',
));

foreach($all_posts as $p)
  set_post_format($p->ID, \'standard\');
刷新删除代码或使用SQL命令:

UPDATE `term_relationships`
  SET term_taxonomy_id = \'standard_post_format_id\'
  WHERE term_taxonomy_id = \'gallery_post_format_id\'
更改standard_post_format_idgallery_post_format_id ID与term\\u taxonomy/terms表中的post格式名称匹配

结束

相关推荐