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: Kit: Exclude Post Type from Forms | |
* Version: 0.0.1 | |
* Author: Kit | |
* Description: Exclude a Post Type from having Forms appended | |
*/ | |
add_action( 'convertkit_get_supported_post_types', function( $post_types ) { |
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 | |
/** | |
* Disable `_load_textdomain_just_in_time` `doing_it_wrong` notice | |
* | |
* @package ConvertKit | |
* @author ConvertKit | |
* | |
* @wordpress-plugin | |
* Plugin Name: Disable `_load_textdomain_just_in_time` `doing_it_wrong` notice | |
* Plugin URI: https://www.wpzinc.com/ |
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: WP to Buffer Pro: Remove URLs from Content and Excerpt Tags | |
* Plugin URI: http://www.wpzinc.com/ | |
* Version: 0.0.1 | |
* Author: WP Zinc | |
* Author URI: http://www.wpzinc.com | |
* Description: Remove URLs from Content and Excerpt Tags. | |
*/ |
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: WP to Buffer Pro: Custom Image for Status | |
* Plugin URI: http://www.wpzinc.com/ | |
* Version: 0.0.1 | |
* Author: WP Zinc | |
* Author URI: http://www.wpzinc.com | |
* Description: Define a custom image for a status programmatically | |
*/ |
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 | |
/** | |
* Make sure to run this after WordPress' init hook has completed. | |
*/ | |
function process_block_spintax_and_spintax_example( $text ) { | |
// Bail if Page Generator Pro isn't active | |
if ( ! function_exists( 'Page_Generator_Pro' ) ) { | |
return new WP_Error( 'error', __( 'Page Generator Pro not active.' ) ); | |
} |
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
/** | |
* Make sure to run this after WordPress' init hook has completed. | |
*/ | |
if ( function_exists( 'Page_Generator_Pro' ) ) { | |
$spin = Page_Generator_Pro()->get_class( 'block_spin' )->process( | |
'#section# | |
#p# | |
#s# | |
Writing content is a lot of fun. | |
Creating articles is a rewarding experience. |
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
/** | |
* Make sure to run this after WordPress' init hook has completed. | |
*/ | |
if ( function_exists( 'Page_Generator_Pro' ) ) { | |
$spin = Page_Generator_Pro()->get_class( 'spintax' )->process( '{Writing|Creating} {content|articles} is {a lot of fun|rewarding experience}.' ); | |
if ( is_wp_error( $spin ) ) { | |
// Something went wrong e.g. invalid spintax | |
// Handle this error as you need | |
echo $spin->get_error_message(); |
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: Media Library Organizer: Tree View: Remove List View Drag + Drop Column | |
* Plugin URI: https://wpmedialibrary.com | |
* Version: 0.0.1 | |
* Author: WP Media Library | |
* Author URI: https://wpmedialibrary.com | |
* Description: Remove Tree View's Drag and Drop Column in Media > List View | |
*/ |
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: Page Generator Pro: Define Advanced Custom Field Post Object Field Value on Generation | |
* Plugin URI: http://www.wpzinc.com/ | |
* Version: 0.0.1 | |
* Author: WP Zinc | |
* Author URI: http://www.wpzinc.com | |
* Description: Defines Advanced Custom Field Post Object Field Value on Generation | |
*/ |
NewerOlder