• Resolved Dan14

    (@dan14)


    I see in the logs that filter hooks to control the output of our visual breadcrumbs were added. Where can I find more information on how to use these filters? I dont see anything that changed in the settings.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Steve M

    (@wpsmort)

    Hi @dan14, the new filters will be available in the next release due out next week. You can find the documentation for them here – https://aioseo.com/doc-categories/filter-hooks/

    Thread Starter Dan14

    (@dan14)

    Thank you for your reply.

    I had a look, I would like to confirm that this filter only affects the frontend breadcrumbs:

    // Hide breadcrumbs on pages.
    add_filter( 'aioseo_breadcrumbs_output', 'aioseo_breadcrumbs_output' );
    function aioseo_breadcrumbs_output( $display ) {
    	if ( is_singular( 'page' ) ) {
    		$display = false;
    	}
    
    	return $display;
    }
    Plugin Support Steve M

    (@wpsmort)

    Yes, they only affect breadcrumbs on the front end.

    Thread Starter Dan14

    (@dan14)

    Thank you, this is great news.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Breadcrumbs frontend filters’ is closed to new replies.