WordPress文章内容页仿站步骤
以下为学做网站论坛关于“WordPress文章内容页仿站步骤”讲解视频教程。
WordPress文章内容页仿站步骤
1、制作single.php
2、调用header、sidebar、footer文件
WordPress文章内容页仿站需要使用的调用标签
调用头部标签:
<?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 href="<?php the_permalink() ?>"> <?php echo mb_strimwidth(get_the_title(), 0, 32, ''); ?></a>
标题:
<?php the_title(); ?>
内容:
<?php the_content(""); ?>
4、元信息调用
日期调用:
<?php the_date_xml()?>
分类目录:
<?php the_category(', ') ?>
文章标签:
<?php the_tags('标签: ', ', ', ''); ?>
浏览数标签:(用到插件wp-postviews)【浏览量插件】
查看次数,调用代码:
<?php the_views();?>
大小调整:
<a href="javascript:ContentSize(16)">16px</a> <a href="javascript:ContentSize(14)">14px</a> <a href="javascript:ContentSize(12)">12px</a>
关闭:
<a href="#" onclick="window.close()">Close</a>
上一片,下一片代码直接粘贴到相应显示的位置就可以了。
上一篇调用:
<?php previous_post_link('« %link'); ?>
下一篇调用:
<?php next_post_link('%link »'); ?>
5、最新文章(注意:以下这段代码是<LI>标签的循环,在插入代码时,要根据模板的原来的标签进行替换。)
<?php $rand_posts = get_posts('numberposts=10&orderby=date');foreach($rand_posts as $post) : ?>
<li><a href="<?php the_permalink(); ?>"> <?php echo mb_strimwidth(get_the_title(), 0, 32, ''); ?>
</a></li>
<?php endforeach;?>
6、相关文章调用(注意:以下这段代码是<LI>标签的循环,在插入代码时,要根据模板的原来的标签进行替换。)
相关文章:通过分类来判断相关文章
<ul id="cat_related">
<?php
$cats = wp_get_post_categories($post->ID);
if ($cats) {
$args = array(
'category__in' => array( $cats[0] ),
'post__not_in' => array( $post->ID ),
'showposts' => 6,
'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(); } ?>
</ul>