• Resolved ashf

    (@ashf)


    I would like to filter the author meta tag in the head tag
    Is there a hook to filter it?

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

    (@rilwis)

    Hi @ashf ,

    Yes, it’s possible. Please use this snippet:

    add_filter( 'slim_seo_open_graph_article_author', function( $value, $tag ) {
        // Modify $value here.
        return $value;
    }, 10, 2 );

    For more details, please follow this docs.

    Thread Starter ashf

    (@ashf)

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘filter meta property=”article:author”?’ is closed to new replies.