Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created January 6, 2012 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/1572065 to your computer and use it in GitHub Desktop.
Save billerickson/1572065 to your computer and use it in GitHub Desktop.
Gallery Metabox - change intro text
<?php
add_filter( 'be_gallery_metabox_intro', 'sample_change_gallery_metabox_intro' );
/**
* Change Gallery Metabox Intro
* @author Bill Erickson
* @link http://www.billerickson.net/code/gallery-metabox-change-intro-text
*
* @param string $intro
* @return string
*/
function sample_change_gallery_metabox_intro( $intro ) {
$intro = '<p><a href="media-upload.php?post_id=' . $post->ID .'&amp;type=image&amp;TB_iframe=1&amp;width=640&amp;height=715" id="add_image" class="thickbox" title="Add Image">Upload Images</a> | <a href="media-upload.php?post_id=' . $post->ID .'&amp;type=image&amp;tab=gallery&amp;TB_iframe=1&amp;width=640&amp;height=715" id="manage_gallery" class="thickbox" title="Manage Gallery">Manage Gallery</a></p>';
echo $intro;
}
@caratage
Copy link

$post->ID was not working for me. Had to add global $post to get the post_id set.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment