Advertisement
Guest User

Untitled

a guest
Oct 1st, 2011
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * Replies Loop - Single Reply
  5. *
  6. * @package bbPress
  7. * @subpackage Theme
  8. */
  9.  
  10. ?>
  11.  
  12. <tr class="bbp-reply-header">
  13. <td colspan="2">
  14.  
  15. <?php printf( __( '%1$s at %2$s', 'bbpress' ), get_the_date(), esc_attr( get_the_time() ) ); ?>
  16.  
  17. <a href="<?php bbp_reply_url(); ?>" title="<?php bbp_reply_title(); ?>" class="bbp-reply-permalink">#<?php bbp_reply_id(); ?></a>
  18.  
  19. <?php do_action( 'bbp_theme_before_reply_admin_links' ); ?>
  20.  
  21. <?php bbp_reply_admin_links(); ?>
  22.  
  23. <?php do_action( 'bbp_theme_after_reply_admin_links' ); ?>
  24.  
  25. </td>
  26. </tr>
  27.  
  28. <tr id="post-<?php bbp_reply_id(); ?>" <?php bbp_reply_class(); ?>>
  29.  
  30. <td class="bbp-reply-author">
  31.  
  32. <?php do_action( 'bbp_theme_before_reply_author_details' ); ?>
  33. <?php bbp_reply_author_link( array( 'sep' => '<br />' ) ); ?>
  34. <p>avatar should go here</p>
  35.  
  36. <?php if ( is_super_admin() ) : ?>
  37.  
  38. <?php do_action( 'bbp_theme_before_reply_author_admin_details' ); ?>
  39.  
  40. <div class="bbp-reply-ip"><?php bbp_author_ip( bbp_get_reply_id() ); ?></div>
  41.  
  42. <?php do_action( 'bbp_theme_after_reply_author_admin_details' ); ?>
  43.  
  44. <?php endif; ?>
  45.  
  46. <?php do_action( 'bbp_theme_after_reply_author_details' ); ?>
  47.  
  48. </td>
  49.  
  50. <td class="bbp-reply-content">
  51.  
  52. <?php do_action( 'bbp_theme_after_reply_content' ); ?>
  53.  
  54. <?php bbp_reply_content(); ?>
  55.  
  56. <?php do_action( 'bbp_theme_before_reply_content' ); ?>
  57.  
  58. </td>
  59.  
  60. </tr><!-- #post-<?php bbp_topic_id(); ?> -->
  61.  
  62.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement