标签: wordpress-theming wordpress
是否可以在文章中获得特定的帖子页码网址?例如,在正常循环中,函数get_pagenum_link(3)将检索类似http://mysite.com/blog/page/3/
get_pagenum_link(3)
http://mysite.com/blog/page/3/
问题是,在文章is_single() == true上,相同的功能不会返回分页结果。我知道我现在已经不在了,但有什么方法可以解决这个问题吗?
is_single() == true
答案 0 :(得分:0)
global $post; $url = $post ? get_permalink($post->ID) : '';