2

このクライアントは、毎週火曜日の数時間の間に wordpress プラグインを自動的に有効にしたいと考えています。これは、プラグインが別のプラグインと競合しているためです。私はそれについてネット上で何も見つけられませんでした.それを行う方法... ボタンをアクティブにするプラグインがクリックされたときにワードプレスの背後で何が起こるか知っている人はいますか? wordpress フォルダにその特定のページが見つかりません... ありがとうございます。

私が試してみたが機能していないもの:

require('/web/htdocs/www.fattorefamiglia.com/home/wp-content/plugins/quick-chat/quick-chat.php');

function toggle_plugin() {

    // Full path to WordPress from the root
    $wordpress_path = '/web/htdocs/www.fattorefamiglia.com/home/';

    // Absolute path to plugins dir
    $plugin_path = $wordpress_path.'wp-content/plugins/';

    // Absolute path to your specific plugin
    $my_plugin = $plugin_path.'quick-chat/quick-chat.php';
$start = strtotime('1:30');
$end = strtotime('22:30');
$timenow = date('U'); 

if((date('w') == 3) && ($timenow >= $start && $timenow <= $end)) { // day 2 = Tuesday
     activate_plugin($my_plugin);
    }
    else {
        deactivate_plugins($my_plugin);   
    }
} 

このコードを functions.php に入れました

4

1 に答える 1