Skip to content

Instantly share code, notes, and snippets.

@alanef
Created August 24, 2022 14:57
Show Gist options
  • Select an option

  • Save alanef/646695ee3ed0f38f687c623d03c3caf1 to your computer and use it in GitHub Desktop.

Select an option

Save alanef/646695ee3ed0f38f687c623d03c3caf1 to your computer and use it in GitHub Desktop.
Extend Titke with Organizr name
add_filter(
'the_title',
function ( $title) {
$post = get_post();
if ( ! property_exists( $post, 'eb_url' ) ) {
return $title;
}
return '<strong>' . esc_attr( $post->organizer->name ) . ': </strong>' . $title;
},
999,
1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment