• Resolved Ali

    (@alishahcheraghi)


    Hi,
    How I can Change Article Schema to BlogPosting?
    I use this

    add_filter( "slim_seo_schema_{article}", function ( $schema ) {
        $schema['@type'] = 'BlogPosting';
    	
        return $schema;
    } );

    but it doesn’t work!

Viewing 1 replies (of 1 total)
  • Plugin Author Anh Tran

    (@rilwis)

    Hi @alishahcheraghi,

    Please remove “{” and “}” in the snippet. This is the correct one:

    add_filter( "slim_seo_schema_article", function ( $schema ) {
        $schema['@type'] = 'BlogPosting';
    	
        return $schema;
    } );
Viewing 1 replies (of 1 total)
  • The topic ‘Article schema to BlogPosting’ is closed to new replies.