WordPress 获取当前网页URL并自动跳转404页面
在很多的 WordPress 主题或者插件功能的开发中,我们总是需要获取到 WordPress 给每个页面定义…
在很多的 WordPress 主题或者插件功能的开发中,我们总是需要获取到 WordPress 给每个页面定义的 ID,不然也某些情况下是无法确定这是哪一个页面,针对于文章或者页面的 ID 获取基本可以使用 get_the_ID()这个函数来直接获取,但是在循环外该函数是无法获取到值的。
WordPress获取当前网页URL地址:
home_url(add_query_arg(array()));
通过URL获取文章页ID:
url_to_postid($current_url);
直接获取文章页ID:
global $post;
$id = $post -> ID;
echo $id;
通过ID获取网页链接地址:
get_permalink($pid);
通过URL获取分类页ID:
get_category_link( $category_id );
应用实例:通过ID获取URL,然后再判断URL里是否包含“?”,然后跳转404网页;
<?php
$current_url = home_url(add_query_arg(array()));
$pid = url_to_postid($current_url);
$link = get_permalink($pid);
if(strpos($current_url,'?') == false){
global $wp_query;
$wp_query->set_404();
status_header(404);
nocache_headers();
include( get_query_template( '404' ) );
die();
}
?>
类别:WordPress开发、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!