您可以创建一个函数来检查或设置cookie,但必须检查wp config。php,因为如果使用重定向,文件将在索引之前直接被访问。重定向上的php。
这是Mark Jaquith写的插件Age Verification 这要求用户在进入网站之前填写年龄验证表。我修改了它liquor, beer, wite site 是的。
if ( !defined( \'ABSPATH\' ) ) { // we\'re being called directly, to check the cookie
if ( file_exists(\'../../wp-config.php\') )
include(\'../../wp-config.php\');
elseif ( file_exists(\'../../../wp-config.php\') )
include(\'../../../wp-config.php\');
else
die(\'Could not find wp-config.php\');
现在可能有更好的方法。这个插件是一年前写的。