উত্তর:
ক্রেডিট অবশ্যই @ কাইজারের কাছে যায় তবে এখানে একটি সম্পূর্ণ কার্যক্ষম সমাধান। আপনি এই কোডটি আপনার ফাংশন.এফপি ফাইলটিতে যুক্ত করতে পারেন (আপনার থিমটিতে):
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' );
শুধু ফিল্টার মধ্যে হুক। কেবলমাত্র অবশিষ্ট জিনিসটি হবে <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
জন্য কলব্যাক এফএন প্রতিস্থাপন করুন যা আপনার কাস্টম স্ট্রিংয়ের সাহায্যে করে। admin_footer_text
return
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 '';
}