Viewing 1 replies (of 1 total)
  • Plugin Author Hesham Zebida

    (@hishaman)

    Hi,

    1- For the links you’ve mentioned, I’ve made some changes to the plugin which will be part of next update. If you don’t want to wait till I update the plugin, you can grab an updated copy of the code from the plugin page over at GitHub.

    2- If you mean the Blog markup, then maybe can use something like this in your Theme’s functions.php file:

    add_filter( 'schema_blog_output', 'schema_blog_output_remove_8987716235' );
    /**
     * Remove Schema Plugin markup for Blog on home page
     *
     * @param array $schema
     * @return array 
     */
    function schema_blog_output_remove_8987716235( $schema ) {
        
    	// Simply return an empty array
    	return array(); 
    }

    Here is a link to the code above from the plugin documentation section.

Viewing 1 replies (of 1 total)

The topic ‘Plugin creates its links, how to disable?’ is closed to new replies.