web-dev-qa-db-ja.com

テーマ有効化フック

テーマが有効になったときにウェブサイトのURLを私に電子メールで送る機能を書きたいのですが。

テーマがアクティブになったときに開始されるフックは何ですか?

私はここでそのコードを持っているだけでウェブサイト上のファイルをtheme_activation_hook.phpと名付けてこれをコピーします。

<?php
/**
 * Provides activation/deactivation hook for wordpress theme.
 *
 * @author Krishna Kant Sharma (http://www.krishnakantsharma.com)
 *
 * Usage:
 * ----------------------------------------------
 * Include this file in your theme code.
 * ----------------------------------------------
 * function my_theme_activate() {
 *    // code to execute on theme activation
 * }
 * wp_register_theme_activation_hook('mytheme', 'my_theme_activate');
 *
 * function my_theme_deactivate() {
 *    // code to execute on theme deactivation
 * }
 * wp_register_theme_deactivation_hook('mytheme', 'my_theme_deactivate');
 * ----------------------------------------------
 * 
 * 
 */

/**
 *
 * @desc registers a theme activation hook
 * @param string $code : Code of the theme. This can be the base folder of your theme. Eg if your theme is in folder 'mytheme' then code will be 'mytheme'
 * @param callback $function : Function to call when theme gets activated.
 */
function wp_register_theme_activation_hook($code, $function) {
    $optionKey="theme_is_activated_" . $code;
    if(!get_option($optionKey)) {
        call_user_func($function);
        update_option($optionKey , 1);
    }
}

/**
 * @desc registers deactivation hook
 * @param string $code : Code of the theme. This must match the value you provided in wp_register_theme_activation_hook function as $code
 * @param callback $function : Function to call when theme gets deactivated.
 */
function wp_register_theme_deactivation_hook($code, $function) {
    // store function in code specific global
    $GLOBALS["wp_register_theme_deactivation_hook_function" . $code]=$function;

    // create a runtime function which will delete the option set while activation of this theme and will call deactivation function provided in $function
    $fn=create_function('$theme', ' call_user_func($GLOBALS["wp_register_theme_deactivation_hook_function' . $code . '"]); delete_option("theme_is_activated_' . $code. '");');

    // add above created function to switch_theme action hook. This hook gets called when admin changes the theme.
    // Due to wordpress core implementation this hook can only be received by currently active theme (which is going to be deactivated as admin has chosen another one.
    // Your theme can perceive this hook as a deactivation hook.
    add_action("switch_theme", $fn);
}
12
Benny

信頼できる有効化/無効化のテーマフックを提供するコードを書きました。ぜひチェックして、皆さんの考えを教えてください。

http://www.krishnakantsharma.com/2011/01/activationdeactivation-hook-for-wordpress-theme/ /

14

これに特化したフックはありません。私はいくつかのアプローチを見ました:

ユーザーの同意なしに情報を自分自身に電子メールで送信する(そしてライセンス認証の際に何かを実行しても、そのような要求をする機会がない)ことは不適切と見なすことができます。

8
Rarst

Wordpressは現在このフックをafter_switch_themeとして提供しています。あなたはそのようにそれを使うことができます:

add_action('after_switch_theme', 'my_theme_activation');

function my_theme_activation () {
  // DO ALL THE THINGS
}

switch_themeフックを使ってtheme deactivation でコードを実行することもできます。

ソース: http://codex.wordpress.org/Plugin_API/Action_Reference/after_switch_theme

3
Christian Varga

このコードをfunctions.phpの先頭に配置してください。

<?php if ( is_admin() && isset($_GET['activated'] ) && $pagenow == "themes.php" ) {
// do your stuff
$url = get_site_url();
// The message
$message = "a new wordpress theme is activated on $url ";

// In case any of our lines are larger than 70 characters, we should use wordwrap()
$message = wordwrap($message, 70, "\r\n");

// Send
wp_mail('[email protected]', 'theme geactiveerd', $message);
}

?>

[email protected]を自分のEメールアドレスに置き換えます。

それが役に立てば幸い。

0
APR Webdesign