This file contains 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 parse_gallery_shortcode($atts) { | |
global $post; | |
$output = apply_filters('post_gallery','', $atts); | |
extract(shortcode_atts(array( | |
'orderby' => 'menu_order ASC, ID ASC', | |
'id' => $post->ID, | |
'itemtag' => 'dl', | |
'icontag' => 'dt', | |
'captiontag' => 'dd', | |
'columns' => 10, |
This file contains 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 tl_create_gallery () | |
{ | |
$postID = get_the_ID(); | |
$args = array( | |
'numberposts' => 10, | |
'order'=> 'ASC', | |
'post_mime_type' => 'image', | |
'post_parent' => $postID, | |
'post_status' => null, | |
'post_type' => 'attachment' |
This file contains 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
/** | |
* Is Jetpack active? | |
*/ | |
//public static function is_active() { | |
// return (bool) Jetpack_Data::get_access_token( JETPACK_MASTER_USER ); | |
//} | |
/* modify Jetpack to work for local environment */ | |
public static function is_active() { | |
return true; | |
} |
This file contains 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 tl_create_gallery () | |
{ | |
$postID = get_the_ID(); | |
$args = array( | |
'numberposts' => -1, | |
'order'=> 'ASC', | |
'post_mime_type' => 'image', | |
'post_parent' => $postID, | |
'post_status' => null, | |
'post_type' => 'attachment' |
NewerOlder