View snip-yotpo-bridge.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: SNIP/Yotpo Bridge | |
Description: Allows to use Yotpo ratings on Structured Data generated with SNIP. | |
Author: Florian Simeth | |
Version: 0.3.0 | |
Author URI: https://rich-snippets.io/yotpo-bridge | |
Plugin URI: https://rich-snippets.io | |
*/ |
View performance.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Plugin-Deactivate-Test | |
Version: 1.0.0 | |
*/ | |
// Place this file in wp-content/mu-plugins/ | |
add_filter( 'option_active_plugins', 'mu_deactivate_unnecessary_plugins' ); |
View wpt-allow-svg.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Allow SVG | |
* Plugin URI: https://wp-typ.de/entwicklung/svg-dateien-in-wordpress-erlauben-so-gehts/ | |
* Description: Allows the upload of SVG images into WordPress. | |
* Requires at least: 5.0 | |
* Requires PHP: 5.6 | |
* Version: 0.1.1 | |
* Author: Florian Simeth | |
*/ |
View snip-permissions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: snip Permissions | |
Description: Sets permissions to use SNIPs REST API the way you like it. | |
Version: 0.1.0 | |
*/ | |
add_filter( | |
'wpbuddy/rich_snippets/rest/permission', |
View snip-shortcodes.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: SNIP Shortcode Example | |
Description: A plugin that allows to add shortcode-content to schema properties. | |
Author: Florian Simeth | |
Version: 0.1.0 | |
Author URI: https://rich-snippets.io | |
Plugin URI: https://rich-snippets.io/shortcode-content-in-properties/ | |
*/ |
View snip-custom-loop.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: SNIP Custom Loop | |
Version: 0.1.0 | |
Description: Example that shows how to create custom loops. | |
*/ | |
add_filter( 'wpbuddy/rich_snippets/fields/loop_subselect/values', 'csnip_loop_values', 10, 1 ); | |
/** |
View snip-comments-field.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: SNIP Comments Field | |
Description: Allows to integrate comments into Structured Data. | |
Author: Florian Simeth | |
Version: 0.1.0 | |
Author URI: https://rich-snippets.io | |
Plugin URI: https://rich-snippets.io/comments-field-type/ | |
*/ |
View snip-basic-field-type.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: SNIP Basic Field Type Example | |
Description: A plugin that adds a new Field Type in SNIP. | |
Author: Florian Simeth | |
Version: 0.1.0 | |
Author URI: https://rich-snippets.io | |
Plugin URI: https://rich-snippets.io/how-to-add-your-own-field-type/ | |
*/ |
View remove-yoast-woocommerce-schema.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Yoast SEO: WooCommerce Structured Data Remover | |
Version: 0.1.0 | |
Description: Removes Structured Data generated from Yoast SEO for WooCommerce. | |
*/ | |
add_action( 'init', 'wbud_yoast_seo_structured_data_remover' ); | |
function wbud_yoast_seo_structured_data_remover() { |
View snip-post-thumbnail-sizes.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: SNIP: Post Thumbnail Sizes | |
Version: 0.1.0 | |
*/ | |
if ( ! defined('ABSPATH')) { | |
exit; | |
} // Exit if accessed directly |
NewerOlder