如何获取 WordPress 各类页面的链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何获取 WordPress 各类页面的链接相关的知识,希望对你有一定的参考价值。
获取文章或页面链接直接输出文章或页面的链接:
1
<?php the_permalink(); ?>
返回文章或页面的链接,以供调用:
1
get_permalink();
可以使用 echo 输出,结果和直接使用 the_permalink() 一样:
1
<?php echo get_permalink(); ?>
获取存档页面链接
function get_current_archive_link( $paged = true )
$link = false;
if ( is_front_page() )
$link = home_url( '/' );
else if ( is_home() && "page" == get_option('show_on_front') )
$link = get_permalink( get_option( 'page_for_posts' ) );
else if ( is_tax() || is_tag() || is_category() )
$term = get_queried_object();
$link = get_term_link( $term, $term->taxonomy );
else if ( is_post_type_archive() )
$link = get_post_type_archive_link( get_post_type() );
else if ( is_author() )
$link = get_author_posts_url( get_query_var('author'), get_query_var('author_name') );
else if ( is_archive() )
if ( is_date() )
if ( is_day() )
$link = get_day_link( get_query_var('year'), get_query_var('monthnum'), get_query_var('day') );
else if ( is_month() )
$link = get_month_link( get_query_var('year'), get_query_var('monthnum') );
else if ( is_year() )
$link = get_year_link( get_query_var('year') );
if ( $paged && $link && get_query_var('paged') > 1 )
global $wp_rewrite;
if ( !$wp_rewrite->using_permalinks() )
$link = add_query_arg( 'paged', get_query_var('paged'), $link );
else
$link = user_trailingslashit( trailingslashit( $link ) . trailingslashit( $wp_rewrite->pagination_base ) . get_query_var('paged'), 'archive' );
return $link;
该函数可以输出首页、分类法(自定义分类法、标签、分类)、自定义文章类型的存档页面、作者存档页面、日期存档页面 的链接,包含分页。
获取当前页面链接
如果你不想判断页面类型,只想输出当前页面的链接,可以使用下面的代码:
<?php
global $wp;
$current_url = home_url(add_query_arg(array(),$wp->request));
echo $current_url;
?> 参考技术A 获取文章或页面链接
直接输出文章或页面的链接:
1
<?php the_permalink(); ?>
返回文章或页面的链接,以供调用:
1
get_permalink();
可以使用 echo 输出,结果和直接使用 the_permalink() 一样:
1
<?php echo get_permalink(); ?>
获取存档页面链接
function get_current_archive_link( $paged = true )
$link = false;
if ( is_front_page() )
$link = home_url( '/' );
else if ( is_home() && "page" == get_option('show_on_front') )
$link = get_permalink( get_option( 'page_for_posts' ) );
else if ( is_tax() || is_tag() || is_category() )
$term = get_queried_object();
$link = get_term_link( $term, $term->taxonomy );
else if ( is_post_type_archive() )
$link = get_post_type_archive_link( get_post_type() );
else if ( is_author() )
$link = get_author_posts_url( get_query_var('author'), get_query_var('author_name') );
else if ( is_archive() )
if ( is_date() )
if ( is_day() )
$link = get_day_link( get_query_var('year'), get_query_var('monthnum'), get_query_var('day') );
else if ( is_month() )
$link = get_month_link( get_query_var('year'), get_query_var('monthnum') );
else if ( is_year() )
$link = get_year_link( get_query_var('year') );
if ( $paged && $link && get_query_var('paged') > 1 )
global $wp_rewrite;
if ( !$wp_rewrite->using_permalinks() )
$link = add_query_arg( 'paged', get_query_var('paged'), $link );
else
$link = user_trailingslashit( trailingslashit( $link ) . trailingslashit( $wp_rewrite->pagination_base ) . get_query_var('paged'), 'archive' );
return $link;
该函数可以输出首页、分类法(自定义分类法、标签、分类)、自定义文章类型的存档页面、作者存档页面、日期存档页面 的链接,包含分页。
获取当前页面链接
如果你不想判断页面类型,只想输出当前页面的链接,可以使用下面的代码:
<?php
global $wp;
$current_url = home_url(add_query_arg(array(),$wp->request));
echo $current_url;
?>本回答被提问者采纳
如何从页面模板上调用的函数而不是从ins获取当前页面永久链接url
I got the answer to this question on WordPress Stack Exchange website:http://wordpress.stackexchange.com/questions/6931/is-there-a-wordpress-function-that-i-can-use-to-retrieve-the-current-page-that-is
// call get_page_link($post->ID) // where $post-is a WordPress variable and needs to be global if called from inside a function. get_page_link($post->ID);
以上是关于如何获取 WordPress 各类页面的链接的主要内容,如果未能解决你的问题,请参考以下文章