aioseo_conflicting_blocks, $this->conflictingBlocks

aioseo_conflicting_blocks, $this->conflictingBlocks

Hook Type: filter

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.5.0.0.1

apply_filters('aioseo_conflicting_blocks, $this->conflictingBlocks') is found 1 times:

  • /app/Common/Traits/Helpers/Blocks.php line 38
    	 * @return string             The content with blocks replaced.
    	 */
    	public function doBlocks( $content, $noConflict = true ) {
    		if ( $noConflict ) {
    			$conflictingBlocks = apply_filters( 'aioseo_conflicting_blocks', $this->conflictingBlocks );
    
    			static $preRenderBlockCallback = null;
    			if ( null === $preRenderBlockCallback ) {
    				$preRenderBlockCallback = function( $preRender, $parsedBlock ) use ( $conflictingBlocks ) {
    					// Classic/freeform blocks have a null blockName, which PHP 8.5 deprecates as an array offset.
    					$blockName = isset( $parsedBlock['blockName'] ) ? (string) $parsedBlock['blockName'] : '';