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
[script] | |
;name script and location to path relative to theme folder | |
my-custom-js = "assets/js/my-custom-js" | |
[script_conditions] | |
;enqueue this script anywhere except the admin | |
is_not_admin = "my-custom-js" |
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
// ! // Add Recent Topics to BBPress | |
function recent_bbpress_topics() { { ?> | |
<!-- html --> | |
<h4>Recent Topics</h4> | |
<?php | |
if ( bbp_has_topics( array( 'author' => 0, 'show_stickies' => false, 'order' => 'DESC', 'post_parent' => 'any', 'posts_per_page' => 10 ) ) ) | |
bbp_get_template_part( 'bbpress/loop', 'topics' ); | |
?> | |
<!-- end --> | |
<?php }} |
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 | |
/** | |
* Single Forum | |
* | |
* @package bbPress | |
* @subpackage Theme | |
*/ | |
get_header(); ?> |
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 | |
/** | |
* Single Forum | |
* | |
* @package bbPress | |
* @subpackage Theme | |
*/ | |
get_header(); ?> |
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 | |
/** | |
* Template Name: Features or Category Slider | |
* | |
* This template either displays Slides taken from the "Features" custom post type. | |
* Or Loops through posts from a certain category. This is based on the theme options set by | |
* the user. | |
* | |
* @author Bowe Frankema <[email protected]> | |
* @link http://shop.presscrew.com/ |