我正在使用anti-splog 在具有随机更改注册URL功能的多站点网络上。在引擎盖下,它指向wp注册。php文件。我创建了一个覆盖文件,插件默认情况下会查找该文件,它只会转过身,加载我的样式表,然后调用插件的ust wp注册。php原始文件:
<?php
/*
Custom MySite Sign Up Page
*/
/**
* Custom MySite stylesheet for signup page.
*/
function MySite_signup_stylesheet() {
wp_enqueue_style(\'custom-wpsignup\', get_stylesheet_directory_uri() . \'/css/wp-signup.css\', false, \'1.0\', \'all\');
}
add_action( \'wp_head\', \'MySite_signup_stylesheet\' );
// Invoke the default sign up page handler
require_once(\'plugins/anti-splog/includes/ust-wp-signup.php\');
我需要一种方法,使我的自定义wp注册页面使用来自我的主题而不是默认首页主题的页面模板,因为它无法正确呈现。有什么想法吗?