मेरा विषय सक्रिय होने पर मुझे वेबसाइट का URL ईमेल करने के लिए एक फ़ंक्शन लिखना होगा।
जब विषय सक्रिय हो जाता है तो कौन सा आरंभ होता है?
मेरा विषय सक्रिय होने पर मुझे वेबसाइट का 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);
}
मैंने एक कोड लिखा है जो एक विश्वसनीय सक्रियण / निष्क्रियता थीम हुक प्रदान करता है। कृपया इसे देखें और मुझे बताएं कि आप लोग क्या सोचते हैं!
http://www.krishnakantsharma.com/2011/01/activationdeactivation-hook-for-wordpress-theme/
इसके लिए कोई विशेष हुक नहीं है। मैंने कुछ दृष्टिकोण देखे हैं:
switch_theme
अपने विषय की जांच के साथ हुक - केवल सक्रियण पर "सेटअप" कोड निष्पादित करें?मैं यह नोट करना चाहता हूं कि उपयोगकर्ता की सहमति के बिना खुद को किसी भी जानकारी को ईमेल करना (और सक्रियण पर कुछ भी चलाने का अनुरोध करने का कोई अवसर नहीं है) को अनुपयुक्त के रूप में देखा जा सकता है।
Wordpress अब इस हुक के रूप में प्रदान करता है after_switch_theme
। आप इसे इस तरह से उपयोग कर सकते हैं:
add_action('after_switch_theme', 'my_theme_activation');
function my_theme_activation () {
// DO ALL THE THINGS
}
आप switch_theme
थीम को निष्क्रिय करने पर भी कोड को चलाने के लिए हुक का उपयोग कर सकते हैं ।
स्रोत: http://codex.wordpress.org/Plugin_API/Action_Reference/after_switch_heme
इस कोड को अपने शीर्ष पर रखें 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('mail@yourdomain.com', 'theme geactiveerd', $message);
}
?>
mail@yourdomain.com
अपने स्वयं के ईमेल पते से बदलें ।
आशा करता हूँ की ये काम करेगा।