Skip to content

Instantly share code, notes, and snippets.

@Pross
Created January 25, 2014 00:13
Show Gist options
  • Save Pross/8609545 to your computer and use it in GitHub Desktop.
Save Pross/8609545 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'pl_opt-textbox_title', 'hack_title' );
function hack_title( $opt ) {
global $post;
if( 4125 == $post->ID )
return 'Hello World!';
else
return $opt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment