• Resolved cldude37

    (@cldude37)


    The “desciption” tag on this plugin is messing up with the meta desciption of my website. Can you please add a option to completly disable this option. Do let me know if there is a fix for this.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter cldude37

    (@cldude37)

    My category pages in my website are also showing up as ‘Articles’ in schema markup. What is the fix for this? I want to exclude these category pages from marking up as articles.

    • This reply was modified 6 years, 6 months ago by cldude37.
    Thread Starter cldude37

    (@cldude37)

    “Description” tag is automatically copying data from my blog post and then showing it. Can you make it copy the “desciption” tag data from the meta=”description” tag.

    Plugin Author Sami Ahmed Siddiqui

    (@sasiddiqui)

    The “desciption” tag on this plugin is messing up with the meta desciption of my website.

    This plugin doesn’t add any description tag. It only adds SCHEMA in the head section

    My category pages in my website are also showing up as ‘Articles’ in schema markup. What is the fix for this? I want to exclude these category pages from marking up as articles.

    Please use the filter to exclude the SCHEMA to be printed on your all PostTypes as mentioned in the Plugins page.

    Regards,
    Sami

    Plugin Author Sami Ahmed Siddiqui

    (@sasiddiqui)

    Filter looks like this:

    function yasglobal_exclude_post_types( $post_type ) {
      if ( $post_type == 'post' ) {
        return '__false';
      }
      return '__true';
    }
    add_filter( 'schema_for_article_exclude_post_type', 'yasglobal_exclude_post_types');

    In this filter, SCHEMA only gets printed on the Posts. For remaining PostTypes, it does add anything on the page.

    Regards,
    Sami

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘“description” tag messing up <meta name="description"’ is closed to new replies.