widget_title, $title

widget_title, $title

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('widget_title, $title') is found 4 times:

  • /modules/widgets/google-translate.php line 165
    				$title = $this->default_title;
    			}
    
    			/** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
    			$title = apply_filters( 'widget_title', $title );
    
    			echo $args['before_widget']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    			if ( ! empty( $title ) ) {
    				echo $args['before_title'] . $title . $args['after_title']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    			}
    			echo '<div id="google_translate_element"></div>';
    
  • /modules/widgets/my-community.php line 196
     
    		echo $args['before_widget']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    
    		/** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
    		$title = apply_filters( 'widget_title', $title );
    		if ( ! empty( $title ) ) {
    			echo $args['before_title'] . $title . $args['after_title']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    		}
    
    		$transient_name = "$this->id-v2-{$instance['number']}" . (int) $instance['include_likers'] . (int) $instance['include_followers'] . (int) $instance['include_commenters'];
    
    
  • /modules/widgets/top-posts.php line 308

    $title = $this->default_title;
    }

    /** This filter is documented in core/src/wp-includes/default-widgets.php */
    $title = apply_filters( ‘widget_title’, $title );

    // Enqueue front end assets.
    $this->enqueue_style();

    $count = isset( $instance[‘count’] ) ? (int) $instance[‘count’] : false;
    if ( $count < 1 || 10 < $count ) { [/php]

  • /modules/widgets/twitter-timeline.php line 136
     
    		$title = $instance['title'] ?? '';
    
    		/** This filter is documented in core/src/wp-includes/default-widgets.php */
    		$title = apply_filters( 'widget_title', $title );
    		if ( ! empty( $title ) ) {
    			$output .= $args['before_title'] . $title . $args['after_title'];
    		}
    
    		$possible_data_attribs = array(
    			'width',