所有分類
  • 所有分類
  • 視頻剪輯
廣告位招租

八、制作内容頁面single.php,添加摘要,上下一篇功能

添加相關文章和評論

文章标題:

<?php the_title_attribute(); ?>

 

作者:<?php the_author_posts_link(); ?>;

發布日期:<?php the_date_xml(); ?>;

(用到插件wp-postviews)查看次數:<?php the_views();?>

 

摘要代碼:

<?php echo mb_strimwidth(strip_tags(apply_filters(‘the_content’, $post->post_content)), 0, 200,”……”); ?>

 

内容代碼:

<?php the_content(“Read More…”); ?>

 

 

循環代碼:

<?php if (have_posts()) : ?>

<?php while (have_posts()) : the_post(); ?>

 

<?php endwhile; ?>

<?php else : ?>

<?php endif; ?>

 

【上一篇】: <?php previous_post_link(‘%link’); ?>

【下一篇】: <?php next_post_link(‘%link’); ?>

 

相關文章:

<?php

$cats = wp_get_post_categories($post->ID);

if ($cats) {

 

$cat = get_category( $cats[0] );

$first_cat = $cat->cat_ID;

$args = array(

‘category__in’ => array($first_cat),

‘post__not_in’ => array($post->ID),

‘showposts’ => 5,

‘caller_get_posts’ => 1

);

query_posts($args);

 

if (have_posts()) :

while (have_posts()) : the_post(); update_post_caches($posts); ?>

<li>* <a href=”<?php the_permalink(); ?>” rel=”bookmark” title=”<?php the_title_attribute(); ?>”><?php the_title(); ?></a></li>

<?php endwhile; else : ?>

<li>* 暫無相關文章</li>

<?php endif; wp_reset_query(); } ?>

 

 

評論調用:

<?php comments_template(); ?>

資源下載
客服QQ:822511134
資源下載
客服QQ:822511134

原文鏈接:https://i.haogew.cn/194.html,轉載請注明出處~~~

0
廣告位招租

評論0

廣告位招租
疫情期間優惠活動!原299包年VIP,現99;原399終身VIP,現199。随着資源不斷增多,随時提價!立即查看
顯示驗證碼
沒有賬号? 注冊  忘記密碼?