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
.wf-loading { | |
opacity: 0; | |
visibility: hidden; | |
} | |
.ie.wf-loading { | |
visibility: hidden; | |
} | |
.ie.wf-active { |
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
catch_workers_output = yes |
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
log_errors = On | |
error_log = /dir/you/want/to/use/for/logging.log |
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 if($content = $post->post_content){ | |
the_content(); | |
} else { ?> | |
Coming soon! | |
<?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
-webkit-touch-callout: none; | |
-webkit-user-select: none; | |
-khtml-user-select: none; | |
-moz-user-select: none; | |
-ms-user-select: none; | |
user-select: none; |
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
<div class="container"> | |
<div class="left"> | |
<ul> | |
<li><a href="#">Menu Item 1</a> | |
<ul> | |
<li><a href="#">Menu-Sub1</a></li> | |
<li><a href="#">Menu-Sub2</a></li> | |
<li><a href="#">Menu-Sub3</a></li> | |
</ul> | |
</li> |
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
jQuery('a:not([href^=mailto]):not(".bsub")').click(function() { | |
var location = jQuery(this).attr('href'); | |
jQuery('#content').animate({ | |
opacity: 0 | |
}, 250); | |
jQuery('.bounce').animate({ | |
left: -500 | |
}, 300, function() { | |
document.location = location; | |
}); |
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
hdiutil makehybrid -o ~/Downloads/Win8.iso ~/Downloads/SW_DVD5_Win_Pro_8_64BIT_English_MLF_X18-16134/ -iso -joliet |
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: WPMU Power Tools | |
* Plugin URI: http://plugins.paidtoblog.com/wpmu-power-tools/ | |
* Description: A few powerfull tools that every WPMU Admin should have. | |
* Author: Brian Freeman (aka MrBrian) | |
* Version: 0.7 | |
*/ | |
/* Some sample snippet codes for PHP Executor (feel free to send in yours) |