已创建论坛回复
-
作者帖子
-
好的这个插件,测试一下,重定向插件,主要问题就是对于多语言的支持未知,而且绝大部分支持很差,比如一个分类重定向到一个页面,那么在主语言英文中功能正常,切换到德语,那么大概率要么不生效,要么还是重定向到了英文页面。我们的应用场景来说,语言比较多(10来种)就意味着如果是基于URL的重定向,那么是一个比较大的工程。目前通过ID现了重定向观察一段时间再说!
function custom_category_redirect() {
$tag_id = get_queried_object_id();
if($tag_id){
if ( $tag_id == 15 || $tag_id == 21 || $tag_id == 22 || $tag_id == 23) {
wp_redirect( get_permalink( 40 ) );
exit;
}
if ( $tag_id == 24) {
wp_redirect( get_permalink( 1942 ) );
exit;
}
if ( $tag_id == 25) {
wp_redirect( get_permalink( 2497 ) );
exit;
}
if ( $tag_id == 36) {
wp_redirect( get_permalink( 2505 ) );
exit;
}
if ( $tag_id == 35) {
wp_redirect( get_permalink( 2504 ) );
exit;
}
if ( $tag_id == 42) {
wp_redirect( get_permalink( 2503 ) );
exit;
}
if ( $tag_id == 41) {
wp_redirect( get_permalink( 2502 ) );
exit;
}
if ( $tag_id == 50) {
wp_redirect( get_permalink( 2501 ) );
exit;
}
}}
add_action( ‘template_redirect’, ‘custom_category_redirect’ );@feibisi 呼叫一下大神
回复至: 站点前端打开比后台还慢 #42654极其低的频率会出现这个问题
Redis 平时又是正常的
我是这样来实现的
function replace_recaptcha_url() {
// 替换 reCAPTCHA URL
function replace_recaptcha_script($url) {
return str_replace(‘https://www.google.com/recaptcha/’, ‘https://recaptcha.net/recaptcha/’, $url);
}
add_filter(‘script_loader_src’, ‘replace_recaptcha_script’);
}
add_action(‘wp_enqueue_scripts’, ‘replace_recaptcha_url’);都没有找到如上的设置项啊!!
请问一下,多站点系统,配置阿里云OSS ,是需要每个站点都启用并配置插件么,好像这些插件并不支持多站点配置?
不好意思,,我没找到 第一个 AMP for Elementor 的插件,方便发分享一下连接么。第四个好像是第二个的拓展插件!
此回复已被标记为私有,🔒 仅楼主及管理员可见。回复至: 多站群系统数据库整理 #42373因为缓存工具,目前我用的是 wp-rocket ,,基于此请教一下觉得又没有必要把 wprocket 换成 wp-optimize 呢
回复至: 网站移动设备易用性测试 #42340问题貌似没解决,按道理说,所有的 css 和 js 文件,都是在CDN上,并且还设置了预取,应该不至于 css 和 js 加载延后啊!
-
作者帖子