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 | |
function hack_jetpack_offline_mode() { | |
if ( ! file_exists( WP_PLUGIN_DIR . '/jetpack/' ) || class_exists( 'Jetpack' ) ) | |
return; | |
require_once( WP_PLUGIN_DIR . '/jetpack/jetpack.php' ); | |
// Disable Jetpack's notification messages | |
hack_disable_jetpack_notices(); |
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 | |
// Start up the engine | |
class CPT_Archive_Content | |
{ | |
/** | |
* Static property to hold our singleton instance | |
* @var CPT_Archive_Content | |
* |
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 | |
function maor_reorder_categories_postbox( $args, $taxonomies ) { | |
global $pagenow; | |
$ok_pages = array( 'post-new.php', 'post.php' ); | |
if ( ! in_array( $pagenow, $ok_pages ) || ! in_array( 'category', $taxonomies ) ) | |
return $args; |
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 | |
function lt_admin_show_taxonomies_dropdowns() { | |
if ( 'lt_product' != get_current_screen()->post_type ) | |
return; | |
$taxonomies = get_taxonomies( array( | |
'object_type' => array( 'lt_product' ) | |
), 'objects' ); |
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 | |
function count_nested_shortcodes( $shortcode ) { | |
// each shortcode uses the "[" chatacter twice. The first is of the opening tag, the last is for the closing tag. | |
// The main shortcode also has 2 occurances. Since we're looking for the nested shortcodes, we'll ignore the main one by subtracting 2 from the total outcome | |
return (int) ( substr_count( $shortcode, '[' ) / 2 ) - 2; | |
} |
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 | |
/** | |
* Add a new <select> field, pre-populated with all countries in our tiny, tiny world. | |
* | |
* @author Maor Chasen | |
*/ | |
function aff_register_ninja_forms_fields() { | |
$args = array( |
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 | |
/** | |
* @author Maor Chasen <[email protected]> | |
*/ | |
function mc_497346850334383( $classes, $class, $post_id ) { | |
$post = get_post( $post_id ); | |
if ( ! $post ) |
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 | |
// https://www.facebook.com/groups/wordpress.support/permalink/497037907031944 | |
function mc_497037907031944( $content ) { | |
if ( is_user_logged_in() ) | |
return $content; | |
else | |
return 'Sorry, you must be logged in...'; | |
} |
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( $ ) { | |
// $ is safe to use here. | |
$(document).ready( function() { | |
// ... | |
} ); | |
} )( jQuery ); |