代码在那里,但有一些奇怪的代码正在评论它: http://canvasranch.com/wordpress/blog/
<div role="main" id="content">
<div class="post-40 page type-page status-publish hentry" id="post-40">
<!--h1 class="entry-title"><!--?php the_title(); ?></h1>
<div class="entry-content">
<p>test test</p>
<span class="edit-link"><a class="post-edit-link" href="http://website.com/wordpress/wp-admin/post.php?post=40&action=edit" title="Edit Page">Edit</a></span>
</div><!-- .entry-content -->
</div><!-- #post-## -->
</div> <!-- end div main -->
答案 0 :(得分:0)
我认为你需要做的就是修复评论标签。除非这是从其他地方以编程方式输入的。你的问题不清楚这一点。
仅使用<!--
替换h1标记开头的<
,然后删除其他评论块<!--
或' - &gt;`
<div role="main" id="content">
<div class="post-40 page type-page status-publish hentry" id="post-40">
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="entry-content">
<p>test test</p>
<span class="edit-link"><a class="post-edit-link" href="http://website.com/wordpress/wp-admin/post.php?post=40&action=edit" title="Edit Page">Edit</a></span>
</div><!-- .entry-content -->
</div><!-- #post-## -->
</div> <!-- end div main -->