wordpress新聞列表如何制作

wordpress新聞列表如何制作

wordpress新聞列表如何制作

WordPress新聞文章列表頁仿站步驟

1、制作archive.php頁面

2、調用header、sidebar、footer文件

調用頭部標簽:

<?php  get_header();?>

調用底部標簽:

<?php  get_footer();?>

調用側邊欄標簽:

<?php  get_sidebar();?>

3、循環調用文章

<?php  if (have_posts()) : ?><?php  while (have_posts()) : the_post(); ?><?php  endwhile; ?><?php  endif; ?>

標題調用:

<a>"&gt;?<?php  echo mb_strimwidth(get_the_title(), 0, 32, &#39;&#39;); ?></a>

日期調用:

<?php  the_date_xml()?>

頁面名字調用:

<?php  wp_title(&#39;&#39;);?>

4、分頁的調用

<?php  kriesi_pagination($query_string); ?>

更多WordPress技術文章,請訪問WordPress教程欄目!

以上就是

? 版權聲明
THE END
喜歡就支持一下吧
點贊10 分享