随手笔记
wordpress主题怎样添加背景图片
将下面这条函数添加到主题的functions.php文件中:
add_custom_background();
然后,再在header.php中找到body标签,改成如下代码:
<body <?php body_class(); ?>>
要记得把原来的body用<!--- XXX --->注释掉
如何制作WordPress网站的上一篇、下一篇
首先进入自己做的网站的后台,选择wordpress文章模板(single.php)文件,用DW软件打开它,在代码模式下,在整个循环代码中加下以下代码:
<?php if (get_previous_post()) { previous_post_link('上一篇: %link','%title',true);} else { echo "上一篇:没有了";} ?>
<?php if (get_next_post()) { next_post_link('下一篇: %link','%title',true);} else { echo "下一篇:没有了";} ?>
<?php if (get_next_post()) { next_post_link('下一篇: %link','%title',true);} else { echo "下一篇:没有了";} ?>
这样就可以在每篇文章的下面出现“上一篇”“下一篇”功能了,记得要在两者间加空格符" "。
补充:
上面的代码是按钮文章ID大小顺序进行全站的文章链接,如果只想调用同一分类下文章的上一篇、下一篇,可以使用以下的代码。
<?php
$categories = get_the_category();
$categoryIDS = array();
foreach ($categories as $category) {
array_push($categoryIDS, $category->term_id);
}
$categoryIDS = implode(",", $categoryIDS);
?>
<?php if (get_previous_post($categoryIDS)) { previous_post_link('上一篇: %link','%title',true);} else { echo "已是最后文章";} ?>
<?php if (get_next_post($categoryIDS)) { next_post_link('下一篇: %link','%title',true);} else { echo "已是最新文章";} ?>
$categories = get_the_category();
$categoryIDS = array();
foreach ($categories as $category) {
array_push($categoryIDS, $category->term_id);
}
$categoryIDS = implode(",", $categoryIDS);
?>
<?php if (get_previous_post($categoryIDS)) { previous_post_link('上一篇: %link','%title',true);} else { echo "已是最后文章";} ?>
<?php if (get_next_post($categoryIDS)) { next_post_link('下一篇: %link','%title',true);} else { echo "已是最新文章";} ?>