我正在尝试重建我的内联帖子计数到一个函数。最好的方法是什么?以下是我的内联代码:
$posts = get_posts(\'post_type=myposttype&customtaxonomy=mytax&posts_per_page=-1\');
$posts_count = count($posts);
echo $posts_count;
在我的
functions.php
我试过这个:
function get_my_posts_count($mytaxonomy) {
$mytaxonomy = get_posts(\'post_type=myposttype&$customtaxonomy=$mytaxonomy&posts_per_page=-1\');
$mytaxonomy_posts_count = count($mytaxonomy);
echo $mytaxonomy_posts_count;
}
之后,在我的模板文件中,我像这样调用函数
<?php get_my_posts_count(\'taxonomyname\');?>