Advertisement
srikat

Untitled

Apr 5th, 2017
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. add_action( 'all', function() {
  2. global $wp_actions;
  3. $filter = current_filter();
  4.  
  5. if ( 'genesis_' === substr( $filter, 0, 8 ) ) {
  6. if ( isset( $wp_actions[ $filter ] ) ) {
  7. echo '<input type="text" onclick="jQuery(this).select();" value="' . $filter . '" style="background-color: transparent; color: #f89e43; border: 1px solid #f89e43; margin: 5px 10px; padding: 2px 5px; overflow: hidden; word-wrap: break-word; width: 100%; font-weight: normal;" />';
  8. // printf( '<div style="color: #f89e43; border: 1px solid #f89e43; margin: 5px 10px; padding: 2px 5px; overflow: hidden; word-wrap: break-word;">%s</div>', $filter );
  9. }
  10. }
  11. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement