php 将任何WordPress附件页面重定向到实际文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将任何WordPress附件页面重定向到实际文件相关的知识,希望对你有一定的参考价值。
<?php
/**
* Redirect all attachment pages to actual file
*/
function redirect_attachment_pages() {
global $post;
// Return if not an attachment
if ( !is_attachment() ) {
return;
}
if( is_attachment() ) {
$url = wp_get_attachment_url($post->ID);
wp_redirect( $url, 301 );
exit();
}
}
add_action( 'template_redirect', 'redirect_attachment_pages' );
以上是关于php 将任何WordPress附件页面重定向到实际文件的主要内容,如果未能解决你的问题,请参考以下文章
将用户重定向到 PHP Wordpress 中的目标页面
wordpress url 重定向挂钩 | PHP |
将 Wordpress 的登录/注册页面重定向到自定义登录/注册页面
WordPress用户登录后重定向到指定页面
php [Wordpress]将父页面重定向到第一个孩子
登录后如何将WordPress用户重定向到上一页