Guest User

Untitled

a guest
Nov 15th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter( 'field_editor_text_field_attributes', 'smyles_add_text_field_attr', 10, 4 );
  4.  
  5. function smyles_add_text_field_attr( $attr, $key, $field, $value ){
  6.  
  7. if( $key === 'some_meta_key' ){
  8. // Add readonly attribute (replacing any others added through this filter)
  9. $attr = 'readonly="readonly"';
  10. }
  11.  
  12. return $attr;
  13. }
Add Comment
Please, Sign In to add comment