Making WordPress.org


Ignore:
Timestamp:
11/01/2018 07:02:31 AM (7 years ago)
Author:
netweb
Message:

Support Forum: Updated bbPress templates

See #3485.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/loop-single-forum-homepage.php

    r4763 r7813  
     1<?php
     2/**
     3 * Single Forum Loop Homepage
     4 *
     5 * @package bbPress
     6 * @subpackage Theme
     7 */
     8
     9// Exit if accessed directly
     10defined( 'ABSPATH' ) || exit;
     11
     12?>
     13
    114<div id="bbp-forum-<?php bbp_forum_id(); ?>" <?php bbp_forum_class( bbp_get_forum_id(), array( '' ) ); ?>>
    2    
     15
    316    <a class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>" title="<?php bbp_forum_title(); ?>"><h3><?php bbp_forum_title(); ?></h3></a>
    417    <p><?php bbp_forum_content(); ?></p>
    5     <p><a href="<?php bbp_forum_permalink(); ?>" title="<?php bbp_forum_title(); ?>" class="viewmore"><?php _e( 'View forum', 'wporg-forums' ); ?></a></p>
     18    <p><a href="<?php bbp_forum_permalink(); ?>" title="<?php bbp_forum_title(); ?>" class="viewmore"><?php esc_html_e( 'View forum', 'wporg-forums' ); ?></a></p>
    619
    720</div><!-- #bbp-forum-<?php bbp_forum_id(); ?> -->
Note: See TracChangeset for help on using the changeset viewer.