- WordPress 6.9.4 (es_ES) with Kadence theme - Homepage: Hero, La Asociación, Pilares, Beneficios, Eventos, Miembros, Hazte Miembro, Contacto - Brand identity: #13294b navy, #a12932 burgundy, #c69c48 gold - Fonts: Raleway (headings) + Source Sans 3 (body) + Lato (UI) - Plugins: Kadence Blocks, Polylang, Contact Form 7 - Custom CSS with full brand styling and responsive layout - HTTPS enforced via wp-config.php proxy detection
57 lines
1.4 KiB
PHP
57 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Replies Loop - Single Reply
|
|
*
|
|
* @package bbPress
|
|
* @subpackage Theme
|
|
*/
|
|
|
|
/* Edited
|
|
Edit: "remove bbp-meta."
|
|
move around content: "remove bbp-footer."
|
|
*/
|
|
|
|
// Exit if accessed directly.
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
?>
|
|
|
|
|
|
<div id="post-<?php bbp_reply_id(); ?>" <?php bbp_reply_class(); ?>>
|
|
<div class="bbp-reply-author">
|
|
|
|
<?php do_action( 'bbp_theme_before_reply_author_details' ); ?>
|
|
|
|
<?php bbp_reply_author_avatar( bbp_get_reply_id(), 60 ); ?>
|
|
|
|
<?php do_action( 'bbp_theme_after_reply_author_details' ); ?>
|
|
|
|
</div><!-- .bbp-reply-author -->
|
|
|
|
<div class="bbp-reply-content">
|
|
|
|
<?php do_action( 'bbp_theme_before_reply_content' ); ?>
|
|
<div class="bbp-head-area">
|
|
|
|
<div class="reply-author-displayname"><?php bbp_reply_author_link( array( 'sep' => ' ', 'show_role' => false, 'type' => 'name' ) ); ?></div>
|
|
|
|
<div class="bbp-meta">
|
|
|
|
<?php bbp_reply_post_date(bbp_get_reply_id()); ?>
|
|
|
|
<a href="<?php bbp_reply_url(); ?>" title="<?php bbp_reply_title(); ?>" class="bbp-reply-permalink">#<?php bbp_reply_id(); ?></a>
|
|
|
|
</div><!-- .bbp-meta -->
|
|
</div>
|
|
|
|
<?php bbp_reply_content(); ?>
|
|
<?php do_action( 'bbp_theme_before_reply_admin_links' ); ?>
|
|
|
|
<?php bbp_reply_admin_links(); ?>
|
|
|
|
<?php do_action( 'bbp_theme_after_reply_admin_links' ); ?>
|
|
<?php do_action( 'bbp_theme_after_reply_content' ); ?>
|
|
|
|
</div><!-- .bbp-reply-content -->
|
|
</div><!-- .reply -->
|