Wordpress Anchor儿童页面标题(jQuery?)

时间:2013-11-02 22:19:27

标签: jquery wordpress

我正在设计单页面布局,因此我使用此代码在其父页面上显示子页面;

<?php
$mypages = get_pages( array( 'child_of' => $post->ID, 'sort_column' => 'post_date',     'sort_order' => 'desc' ) );

foreach( $mypages as $page ) {
    $content = $page->post_content;
    if ( ! $content ) // Check for empty page
        continue;

    $content = apply_filters( 'the_content', $content );
?>
    <h2><?php echo $page->post_title; ?></h2>
    <div class="entry"><?php echo $content; ?></div>
<?php
}
?>

我想在顶部添加链接到每个子页面的图标。但我无法弄清楚如何锚定子页面标题。如果可能的话,我想在没有插件的情况下这样做。

我非常感谢你的帮助。

1 个答案:

答案 0 :(得分:0)

获取永久链接SRC $link = get_permalink($page->ID);