Skip to:
Content

bbPress.org


Ignore:
Timestamp:
04/19/2015 04:45:02 PM (11 years ago)
Author:
johnjamesjacoby
Message:

Templates: Micro-optimizations:

  • Remove trailing ?> tag in some template parts
  • Remove preceding ?> <?php in some template parts, after phpdoc header
  • Remove whitespace where superfluous
  • Reduce number of indentations in some template parts
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/templates/default/bbpress/loop-topics.php

    r5688 r5689  
    88 */
    99
    10 ?>
    11 
    12 <?php do_action( 'bbp_template_before_topics_loop' ); ?>
     10do_action( 'bbp_template_before_topics_loop' ); ?>
    1311
    1412<ul id="bbp-forum-<?php bbp_forum_id(); ?>" class="bbp-topics">
    15 
    1613    <li class="bbp-header">
    17 
    1814        <ul class="forum-titles">
    1915            <li class="bbp-topic-title"><?php esc_html_e( 'Topic', 'bbpress' ); ?></li>
     
    2521            <li class="bbp-topic-freshness"><?php esc_html_e( 'Freshness', 'bbpress' ); ?></li>
    2622        </ul>
    27 
    2823    </li>
    2924
     
    3934
    4035    <li class="bbp-footer">
    41 
    4236        <div class="tr">
    4337            <p>
     
    4539            </p>
    4640        </div><!-- .tr -->
    47 
    4841    </li>
    49 
    5042</ul><!-- #bbp-forum-<?php bbp_forum_id(); ?> -->
    5143
    52 <?php do_action( 'bbp_template_after_topics_loop' ); ?>
     44<?php do_action( 'bbp_template_after_topics_loop' );
Note: See TracChangeset for help on using the changeset viewer.