php 将事件日历“所有事件”页面重定向到custon URL

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将事件日历“所有事件”页面重定向到custon URL相关的知识,希望对你有一定的参考价值。

<?php

/**
  * The Events Calendar / PRO:
  * Redirect tribe_events archive pages to custom page (MUST ENTER IT YOURSELF, BELOW)
  * Does not carry-forward query string parameters
  *
  * From https://gist.github.com/cliffordp/acfde15af9cea91af4fbec168182fd1d
  *
  * @link https://theeventscalendar.com/knowledgebase/embedding-calendar-views-tribe_events-shortcode/
  */
add_action( 'template_redirect', 'tribe_events_redirect_custom_page' );
function tribe_events_redirect_custom_page(){
	//
	// BEGIN SETUP
	//
	
	// a relative URI like '/custom-events/' (probably worse for SEO) or a full URL beginning with http://... (probably better for SEO)
	$redirect_to = ''; // e.g. 'http://wpshindig.com/my-custom-page-link/'
	
	// 301 is permanent. 302 is temporary.
	// https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#3xx_Redirection
	$redirection_code = 301;
	
	
	//
	// END SETUP, BEGIN LOGIC
	//
	if ( ! class_exists( 'Tribe__Events__Main' ) ) {
		return false;
	}
	
	$tecmain = Tribe__Events__Main::instance();
	
	$redirect_to = esc_url_raw( $redirect_to );
	
	if ( empty( $redirect_to ) ) {
		return false;
	}
	
	if ( is_main_query() && is_post_type_archive( $tecmain::POSTTYPE ) ) {
		wp_redirect( $redirect_to, $redirection_code );
		exit;
	}
	
	return null;
}

以上是关于php 将事件日历“所有事件”页面重定向到custon URL的主要内容,如果未能解决你的问题,请参考以下文章

php 事件日历:将所有网站搜索重定向为Tribe Bar关键字搜索。

php 事件日历:将“所有事件”链接转换为真正的“后退”按钮。

php 事件日历:将“所有事件”链接转换为真正的“后退”按钮。

php将两个角色重定向到同一页面

如何使用web.config将所有.asp页面重定向到IIS上的.php页面

从数据库获取事件并放置日历视图(android)