如果要生成某个帖子类型的所有帖子password protected
使用相同的密码,您可以运行update query
下面是实现这一点的方法。
在活动主题的functions.php
文件
global $wpdb;
$wpdb->update(
$wpdb->prefix . \'posts\',
array( \'post_password\' => \'wpse\' ), // Replace wpse with your password
array( \'post_type\' => \'post\' ), // Replace post with the custom post type
array( \'%s\' ),
array( \'%d\' )
);
以上内容将使所有职位类型
post
密码保护,密码为
wpse
.