थीम सक्रिय हुक


15

मेरा विषय सक्रिय होने पर मुझे वेबसाइट का URL ईमेल करने के लिए एक फ़ंक्शन लिखना होगा।

जब विषय सक्रिय हो जाता है तो कौन सा आरंभ होता है?


5
इस उद्देश्य के लिए एक थीम सक्रियण हुक का उपयोग करना बिल्कुल गलत है : "कार्यक्रम को चलाने की स्वतंत्रता का मतलब स्वतंत्रता है ... इसका उपयोग करना ... किसी भी प्रकार के ... उद्देश्य के लिए, डेवलपर के साथ इसके बारे में संवाद करने की आवश्यकता के बिना। या कोई अन्य विशिष्ट इकाई । इस स्वतंत्रता में, यह उपयोगकर्ता का उद्देश्य है जो मायने रखता है, न कि डेवलपर के उद्देश्य ; आप एक उपयोगकर्ता के रूप में अपने उद्देश्यों के लिए कार्यक्रम चलाने के लिए स्वतंत्र हैं, और यदि आप इसे किसी और को वितरित करते हैं ... आप हैं अपने उद्देश्यों को उस पर थोपने का हकदार नहीं है । ”
चिप बेनेट

1
यह विचार अच्छा नहीं है। एक भोली प्लगइन डेवलपर के रूप में, मैंने अपने या अपने उपयोगकर्ताओं के लिए परिणामों के बारे में सोचे बिना कुछ इस तरह लागू किया। 1. यह एक उपयोगकर्ता की गोपनीयता का उल्लंघन करता है। 2. यदि आपका विषय व्यापक रूप से वितरित किया गया है, तो आप अधिक ईमेल प्राप्त करेंगे, जो संभवतः आप संभाल सकते हैं। 3. यदि आपका ईमेल सही है, तो यह निर्भर करता है कि आपके ईमेल की मेजबानी के आधार पर, आपके खाते को उपयोग की शर्तों के उल्लंघन के रूप में माना जा सकता है। मेरे ईमेल खाते को कुछ समय के लिए बंद कर दिया गया था।
ब्रायन फीगर

@BrianFegter बिल्कुल समझ में आता है। मैं केवल अपने शुरुआती सीखने के चरण पर था जब मैं यह कोशिश कर रहा था। चिंताओं को साझा करने के लिए धन्यवाद। StackOverflow और StackExchange के बारे में सबसे बड़ा तथ्य यह है कि जब आप पिछले एक साल में अपने प्रश्नों को देखते हैं, तो आपको एहसास होता है कि आपने समय-समय पर कितना विकास किया है :-)
आतिफ मोहम्मद अमीनुद्दीन

जवाबों:


13

मेरे पास वह कोड है जो वेबसाइट पर फ़ाइल 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);
}

1
इस कोड के लेखक (कृष्ण कांत शर्मा) ने भी अपने स्रोत के लिंक के साथ एक उत्तर छोड़ा। हो सकता है कि जब तक बेनी ने इस सवाल का जवाब दिया, वह कृष्ण के उत्तर को संपादित करने और उसमें कोड जोड़ने के लिए पर्याप्त समझदार नहीं था, इसलिए मेरा
अपमान

14

मैंने एक कोड लिखा है जो एक विश्वसनीय सक्रियण / निष्क्रियता थीम हुक प्रदान करता है। कृपया इसे देखें और मुझे बताएं कि आप लोग क्या सोचते हैं!

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


@ कृष्णकांत शर्मा: वह कोड आशाजनक लगता है, लेकिन क्या आप इसे अपने उत्तर में कॉपी कर सकते हैं? तब यह तब भी मौजूद रहेगा जब आपका ब्लॉग कभी स्थान बदलता है, या किसी कारण से ऑफ़लाइन हो जाता है।
जन फैब्री

1
कृष्णा का कोड बेनी के जवाब में एक है
ब्रास्कोफिलो

8

इसके लिए कोई विशेष हुक नहीं है। मैंने कुछ दृष्टिकोण देखे हैं:

मैं यह नोट करना चाहता हूं कि उपयोगकर्ता की सहमति के बिना खुद को किसी भी जानकारी को ईमेल करना (और सक्रियण पर कुछ भी चलाने का अनुरोध करने का कोई अवसर नहीं है) को अनुपयुक्त के रूप में देखा जा सकता है।


क्या यह? केवल URL ताकि मुझे पता चल सके कि यह कहाँ स्थापित है?
आतिफ मोहम्मद अमीनुद्दीन

3

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


0

इस कोड को अपने शीर्ष पर रखें 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अपने स्वयं के ईमेल पते से बदलें ।

आशा करता हूँ की ये काम करेगा।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.