How to disable or hide edit function feature in wordpres dashboard page with php code

इस PHP कोड को कॉपी करके अपने वर्डप्रेस के डैशबोर्ड के Theme File Editor पेज में जाकर .php function में जाकर पेस्ट करे और फिर Theme File Editor पेज को सेव कर दे ऐसा करते ही आपके वर्डप्रेस के डेशबॉर्ड के अंदर पेज का एडिट फंक्शन डिसएबल या हाईड हो जायेगा ।

add_action( 'init', function() {
    remove_post_type_support( 'page', 'editor' );
}, 99);
Spread the love

Leave a Comment