所以,我使用wordpress并且我将网站设置为私有,我有多个高级自定义字段。但是,当我想给他们打电话时,除非我将页面设置为公开或我以管理员身份登录,否则我什么也看不见。
这是我设置postdata的代码
$the_query = new WP_Query( 'page_id=1234' );
while($the_query -> have_posts()) : $the_query -> the_post();
setup_postdata( $the_query );
do something;
endwhile;