wp_title, $title, ,

wp_title, $title, ,

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('wp_title, $title, ,') is found 1 times:

  • /modules/shortcodes/crowdsignal.php line 261
     
    				if ( empty( $attributes['title'] ) ) {
    					$title = $post instanceof WP_Post ? $post->post_title : get_the_title();
    					/** This filter is documented in core/src/wp-includes/general-template.php */
    					$attributes['title'] = apply_filters( 'wp_title', $title, '', '' );
    				}
    
    				if ( empty( $attributes['permalink'] ) ) {
    					if ( $post_id ) {
    						$attributes['permalink'] = get_permalink( $post_id );
    					} else {