• Resolved developermain91

    (@developermain91)


    Hi, how I can add some custom meta tag in head. Example <meta property=”article:published_time” content=”16-11-2023″> or other.

Viewing 1 replies (of 1 total)
  • Plugin Author Pascal Birchler

    (@swissspidy)

    You can use the web_stories_story_head action to add custom meta tags.

    Example:

    add_filter(
    'web_stories_story_head',
    static function() {
    ?>
    <meta property=”article:published_time” content=”16-11-2023″>
    <?php
    }
    );
Viewing 1 replies (of 1 total)

The topic ‘Custom meta tag’ is closed to new replies.