Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Plugin Name: BBpress extra shortcode
- Description: Adds extra shortcodes for bbprss forums
- Version: 0.1
- Author: Kit Barnes
- License: GPL2
- */
- /* Copyright 2011 Kit Barnes (email : barnes.kit@gmail.com)
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License, version 2, as
- published by the Free Software Foundation.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- */
- add_shortcode("bbp-forum-site-index", "display_forum_index_from_site");
- add_shortcode("bbp-forum-header", "display_forum_header");
- add_shortcode("bbp-forum-footer", "display_forum_footer");
- function display_forum_index_from_site( $attr, $content = '' ) {
- if (!empty( $attr['id'] ))
- {
- //Switch to supplied blog
- switch_to_blog($attr['id']);
- }
- if ( !empty( $content ) || !is_numeric( $attr['id'] ) )
- return $content;
- if ( bbp_has_forums() )
- {?>
- <tbody>
- <?php while ( bbp_forums() ) : bbp_the_forum(); ?>
- <?php bbp_get_template_part( 'bbpress/loop', 'single-forum' ); ?>
- <?php endwhile; ?>
- </tbody>
- <?php }
- }
- function display_forum_header() {
- do_action( 'bbp_template_before_forums_loop' ); ?>
- <table class="bbp-forums">
- <thead>
- <tr>
- <th class="bbp-forum-info"><?php _e( 'Forum', 'bbpress' ); ?></th>
- <th class="bbp-forum-topic-count"><?php _e( 'Topics', 'bbpress' ); ?></th>
- <th class="bbp-forum-reply-count"><?php bbp_show_lead_topic() ? _e( 'Replies', 'bbpress' ) : _e( 'Posts', 'bbpress' ); ?></th>
- <th class="bbp-forum-freshness"><?php _e( 'Freshness', 'bbpress' ); ?></th>
- </tr>
- </thead>
- <?php
- }
- function display_forum_footer() {
- ?>
- <tfoot>
- <tr><td colspan="4"> </td></tr>
- </tfoot>
- </table>
- <?php do_action( 'bbp_template_after_forums_loop' );
- }
- ?>
Advertisement
Advertisement
Advertisement
RAW Paste Data
Copied
Advertisement