簡體   English   中英

如何僅在WordPress中顯示第一篇文章的內容和舊文章的鏈接

[英]How to show first post content and links for older post only in WordPress

我正在嘗試創建新聞紙網站,並且需要幫助以僅顯示最近帖子的內容和舊帖子的標題...這是我的代碼

<?php
   $args = array(
                'orderby' => 'id',
                'hide_empty' => 1,
                'order' => 'ASC'
            );
    $categories = get_categories($args);
    foreach($categories as $category) { ?>
        <div class="newsdiv">
            <?php
                echo '<center><a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a></center> <br/> ';
                $post_args = array(
                         'numberposts' => 3,
                         'category' => $category->term_id 
                        );

                $posts = get_posts($post_args);

                foreach($posts as $post) {?>
                    <a href="<?php the_permalink(); ?>"><?php echo"*";the_title(); ?></a>
                    <div class="entry">
                        <?php the_content(); ?>
                    </div>
                <?php 
                } 
                echo '<dd class="view-all"> <a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>Read more </a></dd>';
                echo '</dl>';
            ?>
        </div>
<?php   
    } 
?>

您可以嘗試Codex以前的帖子

<?php previous_post_link( $format, $link, $in_same_cat = false, $excluded_terms = '', $taxonomy = 'category' ); ?> 

您可以像這樣簡單或復雜地使用它。

<?php previous_post_link(); ?> 

有關更多信息,您可以使用Codex http://codex.wordpress.org/Function_Reference/previous_post_link

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM