Skip to content

Instantly share code, notes, and snippets.

@Shelob9
Created April 10, 2014 19:31
Show Gist options
  • Save Shelob9/10414952 to your computer and use it in GitHub Desktop.
Save Shelob9/10414952 to your computer and use it in GitHub Desktop.
Change the heading of the Pods "More Fields" metabox in the post editor.
<?php
add_filter( 'pods_meta_default_box_title', 'slug_pods_metabox_title' );
slug_pods_metabox_title( $title ) {
$title = __( 'Return of The Jedi', 'pods' );
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment