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
[gchart id="26611"] |
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
activity/index.php | |
blogs/create.php | |
blogs/index.php | |
forums/index.php | |
forums/single/forum.php | |
forums/single/topic.php | |
groups/create.php | |
groups/index.php | |
groups/single/home.php | |
groups/single/plugins.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
[HEADER] | |
<div id="container"> | |
<div id="content"> | |
[PAGE CONTENT] | |
</div> | |
<div id="sidebar"> | |
[SIDEBAR CONTENT] | |
</div> |
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
{ | |
"name": "ThemeFortress", | |
"description": "Just a simple shortcut to ThemeFortress.", | |
"version": "1.0", | |
"icons": { | |
"128": "128.png" | |
}, | |
"app": { | |
"urls": [ | |
"http://themefortress.com/" |
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
<ul class="row"> | |
<li class="four columns"><label for="mce-EMAILTYPE-0"><input type="radio" value="html" name="EMAILTYPE" id="mce-EMAILTYPE-0" style="display:none;"><span class="custom radio"></span> html</label></li> | |
<li class="four columns"><label for="mce-EMAILTYPE-1"><input type="radio" value="text" name="EMAILTYPE" id="mce-EMAILTYPE-1" style="display:none;"><span class="custom radio"></span> text</label></li> | |
<li class="four columns"><label for="mce-EMAILTYPE-2"><input type="radio" value="mobile" name="EMAILTYPE" id="mce-EMAILTYPE-2" style="display:none;"><span class="custom radio"></span> mobile</label></li> | |
</ul> |
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
<ul> | |
<li><label for="mce-EMAILTYPE-0"><input type="radio" value="html" name="EMAILTYPE" id="mce-EMAILTYPE-0"> html</label></li> | |
<li><label for="mce-EMAILTYPE-1"><input type="radio" value="text" name="EMAILTYPE" id="mce-EMAILTYPE-1"> text</label></li> | |
<li><label for="mce-EMAILTYPE-2"><input type="radio" value="mobile" name="EMAILTYPE" id="mce-EMAILTYPE-2"> mobile</label></li> | |
</ul> |
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
function people_init() { | |
// create a new taxonomy | |
register_taxonomy( | |
'people', | |
'post', | |
array( | |
'label' => __( 'People' ), | |
'sort' => true, | |
'args' => array( 'orderby' => 'term_order' ), | |
'rewrite' => array( 'slug' => 'person' ) |
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
define('AUTOSAVE_INTERVAL', 300 ); // change WP autosave interval from 60 seconds to 300 seconds |
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
DELETE FROM wp_posts WHERE post_type = "revision"; | |
-- where wp_posts is your WordPress table for posts |