Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter( 'field_editor_auto_output_li_actions', 'smyles_remove_li_actions' );
  4.  
  5. function smyles_remove_li_actions( $actions ){
  6.  
  7. if( isset( $actions['single_resume_meta_start'] ) ){
  8. unset( $actions['single_resume_meta_start'] );
  9. }
  10.  
  11. return $actions;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement