0

作为一个 Wordpress 新手,我目前正在整理一个基于网络链接的模板,该模板将在一个页面上显示我所有的博客文章,并按它们所在的类别分组。不幸的是,无论我如何修改定义列表,格式似乎不起作用。

有谁知道为什么以下代码对我的 DL 没有响应?实际页面的链接是http://gameservertutorials.com/?page_id=2

<?php
/*
Template Name: Group Archives
*/
?>

<?php get_header(); ?>

<div id="content">

    <?php

        $cat_args = array(
          'orderby' => 'name',
          'order' => 'ASC',
          'child_of' => 0
        );

        $categories =   get_categories($cat_args); 

    ?>

    <div class="post">

    <dl>
        <?php foreach($categories as $category){ ?>

                <div class="title">
                        <dt><h2><a href="<?php echo get_category_link( $category->term_id ) ?>" title="<?php echo sprintf( __( "View all posts in %s" ), $category->name ) ?>"><?php echo $category->cat_name ?></a></h2></dt>
                </div>

                <?php
                    $post_args = array(
                        'numberposts' => 50,
                        'category' => $category->term_id
                    );

                    $posts = get_posts($post_args);

                    foreach($posts as $post){
                ?>

                <dd><a href="<?php echo the_permalink(); ?>" title="<?php echo the_title(); ?>"><?php echo the_title(); ?></a></dd>

                    <?php
                    }
                    ?>

        <?php
        }
        ?>
    </dl>

    </div>
</div>

<?php get_sidebar(); ?>
<?php get_footer(); ?>
4

1 回答 1

0

<dt>尝试从标签中删除周围的 DIV :

 <dt class="title"><h2><a href="<?php echo get_category_link( $category->term_id ) ?>" title="<?php echo sprintf( __( "View all posts in %s" ), $category->name ) ?>"><?php echo $category->cat_name ?></a></h2></dt>
于 2012-05-12T20:48:49.693 回答