Last active
December 13, 2016 19:46
-
-
Save philhoyt/ab727d2c83b507ed39e8cf425d8f8689 to your computer and use it in GitHub Desktop.
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
/** | |
* Adds a meta box | |
*/ | |
function simple_meta_box() { | |
add_meta_box( 'prfx_meta', ( 'View Post' ), 'simple_meta_box_callback', 'staff', 'side', 'high' ); | |
} | |
add_action( 'add_meta_boxes', 'simple_meta_box' ); | |
/** | |
* Outputs the content of the meta box | |
*/ | |
function simple_meta_box_callback( $post ) { | |
echo '<a href="'; | |
the_permalink(); | |
echo '" class="button button-small" target="_blank">View Profile</a>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment