WP:获取父子页计数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WP:获取父子页计数相关的知识,希望对你有一定的参考价值。
<?php //get the sub pages for the parent page $subPages = get_pages('child_of=parent_page_id'); //$i will equal the page number $i=1; foreach($subPages as $subs){ //not sure what the exact array key for page_id will be. use var_dump($subPages)to find out //make the array key the page id for use later (as current_page_id) $pageNumber[$subs->page_id] = $i; } // Then show the page count and number pages for the page you are on. echo 'vewing page '.$pageNumber[current_page_id].' of '.$numberPages; ?>
以上是关于WP:获取父子页计数的主要内容,如果未能解决你的问题,请参考以下文章