wpseo_frontend_presentation, $this->context->presentation, $this->context

wpseo_frontend_presentation, $this->context->presentation, $this->context

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-seo.28.1

apply_filters('wpseo_frontend_presentation, $this->context->presentation, $this->context') is found 2 times:

  • /src/surfaces/values/meta.php line 130
    	public function get_head() {
    		$presenters = $this->get_presenters();
    
    		/** This filter is documented in src/integrations/front-end-integration.php */
    		$presentation = \apply_filters( 'wpseo_frontend_presentation', $this->context->presentation, $this->context );
    
    		$html_output      = '';
    		$json_head_fields = [];
    
    		foreach ( $presenters as $presenter ) {
    			$presenter->presentation = $presentation;
    
  • /src/surfaces/values/meta.php line 169
    			return $this->properties_bin[ $name ];
    		}
    
    		/** This filter is documented in src/integrations/front-end-integration.php */
    		$presentation = \apply_filters( 'wpseo_frontend_presentation', $this->context->presentation, $this->context );
    
    		if ( ! isset( $presentation->{$name} ) ) {
    			if ( isset( $this->context->{$name} ) ) {
    				$this->properties_bin[ $name ] = $this->context->{$name};
    				return $this->properties_bin[ $name ];
    			}