• Resolved C13

    (@c13creative)


    I am trying to change the structured data name to be something other than the WP page name. Is there a filter I can use? Hoping to do something like:

    add_filter( 'aioseop_name', 'change_wordpress_seo_name' );
    
    function change_wordpress_seo_name( $name ){
    	
    	if ( is_page( ID ) ) {
            return $name;
        }
    	
        $name = 'New Name';
        return $name;
    }

    Thank you!

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Manually Change Structured Data Name’ is closed to new replies.