Created
January 7, 2014 07:22
-
-
Save ntwb/8295783 to your computer and use it in GitHub Desktop.
bbPress - Custom Forum link after replies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: bbPress - Custom Forum link after replies | |
| Plugin URI: https://gist.github.com/ntwb/8295783 | |
| Description: bbPress - bbPress - Custom Forum link after replies | |
| Version: 0.1 | |
| Author: Stephen Edgar - Netweb | |
| Author URI: http://netweb.com.au | |
| */ | |
| function ntwb_forum_link_after_replies() { | |
| ?> | |
| <a class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>"><?php bbp_forum_title(); ?></a> | |
| <?php | |
| } | |
| add_action( 'bbp_template_after_replies_loop', 'ntwb_forum_link_after_replies' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment