我已经在wordpress中创建了一个父页面,现在我希望我父母下面的所有子页面都会显示在其中 所以我使用这个代码谁工作得很好我只能让阅读更多工作 这是我使用的代码 帮助将是伟大的:) ' $ post-> ID,' sort_column' => ' post_date',' sort_order' => '降序' ));
foreach( $mypages as $page ) {
$content = $page->post_content;
if ( ! $content ) // Check for empty page
continue;
$content = apply_filters( 'the_content', $content );
?>
<h2><a href="<?php echo get_page_link( $page->ID ); ?>"><?php echo $page->post_title; ?></a></h2>
<div class="entry"><?php echo $content; ?></div>
<?php
}
&GT;&#39;
答案 0 :(得分:0)
你可以添加一个the_permalink();用'阅读更多'。 E.g。
//input[@type='text'][@class='form-control']