加载WordPress核心,但带有特定插件

时间:2020-06-03 作者:FooBar

我正在寻找一种创建自定义PHP文件的方法,在其中加载WordPress core,但只激活特定插件。

<?php
require_once \'../../wp-load.php\';
// load specific plugins

// do something
这怎么可能?

1 个回复
SO网友:FooBar

似乎是这样的:

add_filter( \'option_active_plugins\', \'disable_plugins\' );

function disable_plugins($plugins){
    return []; // you can define specific plugins you want to load here.
}

相关推荐

在wp-login.php上确定用户目标

我添加了一些功能,要求用户通过连接到template_redirect 操作并将未经身份验证的用户发送到wp登录。一切正常。我想为这些访问者在wp登录屏幕上添加一条消息,但我不想将该消息显示给也通过同一页面登录的后端用户。我正在使用login_message 筛选以添加文本。Is there a way, when on the wp-login page to determine if the person is trying to login into the frontend or wp-admin