Advertisement
Guest User

Untitled

a guest
Jul 29th, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.69 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Replies Loop - Single Reply
  4.  *
  5.  * @package bbPress
  6.  * @subpackage Theme
  7.  */
  8.  
  9. // Exit if accessed directly
  10. defined( 'ABSPATH' ) || exit;
  11.  
  12. ?>
  13.  
  14. <div id="post-<?php bbp_reply_id(); ?>" <?php bbp_reply_class(); ?>>
  15.  
  16.     <div class="bbp-reply-author">
  17.  
  18.         <?php do_action( 'bbp_theme_before_reply_author_details' ); ?>
  19.  
  20.         <?php bbp_reply_author_link( array( 'sep' => '', 'show_role' => true ) ); ?>
  21.  
  22.         <?php if ( bbp_is_user_keymaster() ) : ?>
  23.  
  24.             <?php do_action( 'bbp_theme_before_reply_author_admin_details' ); ?>
  25.  
  26.             <div class="bbp-reply-ip"><?php bbp_author_ip( bbp_get_reply_id() ); ?></div>
  27.  
  28.             <?php do_action( 'bbp_theme_after_reply_author_admin_details' ); ?>
  29.  
  30.         <?php endif; ?>
  31.  
  32.         <?php do_action( 'bbp_theme_after_reply_author_details' ); ?>
  33.  
  34.     </div><!-- .bbp-reply-author -->
  35.  
  36.  
  37.     <div class="bbp-reply-content">
  38.  
  39.         <div class="bbp-reply-details">
  40.         <a href="<?php bbp_reply_url(); ?>"><?php bbp_reply_post_date(); ?></a>
  41.  
  42.         <?php if ( bbp_is_single_user_replies() ) : ?>
  43.             <span class="bbp-header">
  44.                 <?php esc_attr_e( 'in reply to: ', 'bbpress' ); ?>
  45.                 <a class="bbp-topic-permalink" href="<?php bbp_topic_permalink( bbp_get_reply_topic_id() ); ?>"><?php bbp_topic_title( bbp_get_reply_topic_id() ); ?></a>
  46.             </span>
  47.         <?php endif; ?>
  48.  
  49.         </div><!-- .bbp-reply-details -->
  50.  
  51.         <?php do_action( 'bbp_theme_before_reply_content' ); ?>
  52.             <?php bbp_reply_content(); ?>
  53.  
  54.         <?php do_action( 'bbp_theme_after_reply_content' ); ?>
  55.  
  56.  
  57.         <?php do_action( 'bbp_theme_before_reply_admin_links' ); ?>
  58.         <?php bbp_reply_admin_links(); ?>
  59.         <?php do_action( 'bbp_theme_after_reply_admin_links' ); ?>
  60.  
  61.     </div><!-- .bbp-reply-content -->
  62.  
  63. </div><!-- .reply -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement