संस्करण 3.3.1 में "Wordpress के साथ बनाने के लिए धन्यवाद" संपादित करें


10

क्या सीएमएस के निचले भाग में 3.3.1 संस्करण में "वर्डप्रेस के साथ बनाने के लिए धन्यवाद" पाठ को संपादित करने का एक तरीका है? यदि हां, तो मुझे किस फ़ाइल को संपादित करने की आवश्यकता है?

जवाबों:


13

क्रेडिट निश्चित रूप से @kaiser पर जाता है, लेकिन यहां एक पूर्ण कार्य समाधान है। आप इस कोड को अपने functions.php file (अपनी थीम में) में जोड़ सकते हैं:

function wpse_edit_footer() {
    add_filter( 'admin_footer_text', 'wpse_edit_text', 11 );
}

function wpse_edit_text($content) {
    return "New Footer Text";
}

add_action( 'admin_init', 'wpse_edit_footer' );

5

बस फिल्टर में हुक। केवल एक चीज शेष रहेगी <hr />

/**
 * Change/Disable the footer text line
 * @return void
 */
function wpse_remove_footer()
{
    add_filter( 'admin_footer_text',    '__return_false', 11 );
    add_filter( 'update_footer',        '__return_false', 11 );
}
add_action( 'admin_init', 'wpse_remove_footer' );

मामले में आप इसे बदलना चाहते हैं:

add_action( 'admin_init', function()
{
    add_filter( 'admin_footer_text', function() {
        echo "This is a custom admin footer text";
    }, 11 );
    add_filter( 'update_footer', function() {
        echo "This is a custom footer update text";
    }, 11 );
} );

ठीक है धन्यवाद, मैं इसे हटा नहीं करना चाहता, हालांकि, यह जो कहता है उसे संपादित करें।
रोब

@ रब बस एक कस्टम कॉलबैक के साथ __return_falseकॉलबैक fn को बदलें जो आपके कस्टम स्ट्रिंग के साथ admin_footer_textकरता है return
केसर

1
add_filter('admin_footer_text', remove_admin_footer_text, 1000);

function remove_admin_footer_text($footer_text =''){
return '';  
}

add_filter('update_footer', remove_admin_footer_upgrade, 1000);

function remove_admin_footer_upgrade($footer_text =''){
return '';  
}

1
कृपया एक उचित उत्तर पोस्ट करें, अर्थात कृपया बताएं कि आपका कोड क्या करता है और यह कैसे काम करता है। फ़ाइल संपादित करें और अनुपालन करें
पीटर गोयन

0

तुम वहाँ जाओ:

// Admin footer modification

function remove_footer_admin () {
    echo '<span id="footer-thankyou">Developed by <a href="https://www.example.com" target="_blank">www.example.com</a></span>';
}

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