add an areaServed schema to organization schema

#365124
Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello,

    Thank you for contacting Rank Math support today and bringing your concern to our attention.

    As also mentioned in your other ticket, you need to further extend your schema structure by customizing our filter code here: https://rankmath.com/kb/filters-hooks-api-developer/#extend-json-ld-data

    After you customize the filter code to edit your schema structure, you may apply the code to your theme’s functions.php file.

    Hope this helps you with your situation. Looking forward to helping you on this one.

    Thank you.

    Ross
    Rank Math free

    Hello again, how can I add this code in that custom php filter?:

    "areaServed": [{
        "@type": "City",
        "name": "Madrid",
        "sameAs": "https://en.wikipedia.org/wiki/Madrid"
      }]

    Thanks!!!

    Hello,

    You can use the filter given below to add the areaServed to the Organization Schema:

    add_filter( 'rank_math/json_ld', function( $data, $jsonld ) {
        if ( isset( $data['publisher'] ) ) {
            $data['publisher']['areaServed']['@type'] = "city";
    		$data['publisher']['areaServed']['name'] = "Madrid";
    		$data['publisher']['areaServed']['sameAs'] = "https://en.wikipedia.org/wiki/Madrid";
        }
        return $data;
    }, 99, 2 );

    Hope this helps. Let us know if you need any other assistance.

    Thanks.

    Ross
    Rank Math free

    Thank you so much guys!

    Hello,

    We are super happy that this resolved your issue.

    If you have another question in the future, please feel free to create a new forum topic, and it will be our pleasure to assist you again.

    Thank you.

Viewing 5 replies - 1 through 5 (of 5 total)

You must be logged in to reply to this ticket.