Skip to content

Instantly share code, notes, and snippets.

@norcross
Created January 4, 2014 23:36
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 norcross/8262272 to your computer and use it in GitHub Desktop.
Save norcross/8262272 to your computer and use it in GitHub Desktop.
load the preview in logged in mode
<?php
add_filter( 'gppro_preview_url', 'gpp_user_logged_in' );
function gpp_user_logged_in( $url ) {
$url['adminbar'] = 'on';
return $url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment