Created
August 24, 2022 14:57
-
-
Save alanef/646695ee3ed0f38f687c623d03c3caf1 to your computer and use it in GitHub Desktop.
Extend Titke with Organizr name
This file contains hidden or 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
| 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