Advertisement
Guest User

Untitled

a guest
Mar 6th, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <?php $author_id = $wp_query->queried_object->ID; ?>
  2.  
  3.  
  4.  
  5. function user_bio_visual_editor( $user ) {
  6. if (function_exists('wp_editor')):
  7. ?>
  8. <script type="text/javascript">
  9. (function($){
  10. $('#description').parents('tr').remove();
  11. })(jQuery);
  12. </script>
  13. <table class="form-table">
  14. <tr>
  15. <th><label for="description"><?php _e('Biographical Info'); ?></label></th>
  16. <td>
  17. <?php
  18. $description = get_user_meta( $user->ID, 'description', true);
  19. $editor_settings = array('media_buttons' => false);
  20. wp_editor( $description, 'description' , $editor_settings);
  21. ?>
  22. </td>
  23. </tr>
  24. </table>
  25. <?php
  26. endif;
  27. }
  28. add_action('show_user_profile', 'user_bio_visual_editor');
  29. add_action('edit_user_profile', 'user_bio_visual_editor');
  30.  
  31. <?php if((get_the_author_meta('description', $author_id))!=""): ?>
  32. <?php echo get_the_author_meta('description', $author_id),"<br>"; endif;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement