wordpress主题开发-部分函数调用整理

post_content;?>  //文章内容

post_title;?>  //标题

post_author )?>  //作者

ID, '演示地址', true); ?>  //获取自定义字段为“演示地址”的值

post_excerpt;?>  //摘要post_excerpt;?>  //摘要

term_id );}?>  //调用当前文章所属分类的链接,用于返回列表

term_id);?>   //指定分类别名,获取该别名分类的链接

  //获取主题目录

$categories = get_the_category();
$categoryIDS = array();
foreach ($categories as $category) {
array_push($categoryIDS, $category->term_id);
}
$categoryIDS = implode(",", $categoryIDS);
?>

 

文章的循环输出:


循环文章调用

 

文章的分页


functions.php代码:

function wp_pagenavi() {
global $wp_query, $wp_rewrite;
//判断当前页面
$wp_query->query_vars['paged'] > 1 ? $current = $wp_query->query_vars['paged'] : $current = 1;

$pagination = array(
'base' => @add_query_arg('paged','%#%'),
'format' => '',
'total' => $wp_query->max_num_pages, //总共显示的页码数
'current' => $current, //当前页码数
'show_all' => false, //是否将所有页码都显示出来,需配合下两个参数
'type' => 'plain',
'end_size'=>'1', //在最后面和最前面至少显示多少个数,
'mid_size'=>'3', //在当前页码的前后至少显示多少个页码数
'prev_text' => '<', //是否显示“上一页”“下一页”链接
'next_text' => '>'
);

if( $wp_rewrite->using_permalinks() )
$pagination['base'] = user_trailingslashit( trailingslashit( remove_query_arg('s',get_pagenum_link(1) ) ) . 'page/%#%/', 'paged');
if( !empty($wp_query->query_vars['s']) )
$pagination['add_args'] = array('s'=>get_query_var('s'));
echo paginate_links($pagination);
}

你可能感兴趣的:(wordpress主题开发-部分函数调用整理)