查找页面的内容

时间:2016-08-27 17:09:41

标签: wordpress

我正在尝试更改现有的wordpress网站。主页面由以下内容生成:

<?php

get_header();
the_post();
if( get_post_meta( $post->ID, '_ebor_disable_header', true ) !== 'on' )
    get_template_part('loop/content','pagetitle');
the_content();
get_footer('onepage');

我已经通过删除the_content()并看到该页面大部分空白来验证这一点。但是,我无法找到存储内容的位置。

在数据库中搜索没有返回任何内容(udz_posts表),它似乎不在源文件中。有没有办法确定从哪里获取内容?

1 个答案:

答案 0 :(得分:0)

我想帮助你。这是主页的代码吗?如果是,您想编辑它的内容。这实际上取决于它的设置方式。但你实际上可以在那里找到HTML代码以使其显示。但是,为了最大限度地使用wordpress,您可以将页面设置为主页并在其中添加内容。