它几乎如我所愿,谢谢你的评论!
差不多了,所以我还有一个问题。(如果这是显而易见的,我很抱歉,我没有经验,我现在正在学习一切,我已经学到了很多,我想学习更多,因为目前我负担不起这些修改的费用)。
我尝试了两种方法:
Method 1 - inserting separate (non-WP) page in div and iframe 进入样式1。php-它看起来完全符合我的要求:
然而
returned content is not seen by 谷歌机器人,WP管理员和WP插件看不到,这使得所有这些都很难优化。
Method 2 - echoing other WP page with desired content by:
<?php
$your_query = new WP_Query( \'pagename=about\' );
while ( $your_query->have_posts() ) : $your_query->the_post();
the_content();
endwhile;
wp_reset_postdata();?>
返回的原始文本:
which is visible for 谷歌机器人、WP引擎等。
My question is:
How do I return formatted page that is visible for Google, WP, plugins etc.?
我知道这可能很简单,但我已经取得了很多成就,我想在你们的帮助和我的善意下完成整个项目。
非常感谢!