Advertisement
Guest User

Ukrywanie pól edycji WordPress

a guest
Jun 12th, 2015
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2. // Proszę wstawić taki kod do pliku functions.php szablonu
  3.  
  4. function remove_edit_fields() {
  5.      remove_post_type_support('post', 'title');
  6.          remove_post_type_support('post', 'editor');
  7. }
  8.  
  9. add_action('admin_init', 'remove_edit_fields);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement