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 | |
*/ |
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: WordPress to Buffer Pro: Broadbean XML Feed: Define Featured Image on new imported Jobs | |
* Plugin URI: http://www.wpzinc.com/ | |
* Version: 0.0.1 | |
* Author: WP Zinc | |
* Author URI: http://www.wpzinc.com | |
* Description: Example code of a possible implementation for defining WordPress to Buffer Pro's Featured Image for a Job Post created from Broadbean's XML feed | |
*/ |
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: Convert Paragraphs to Breaklines in Statuses | |
* Plugin URI: http://www.wpzinc.com/ | |
* Version: 0.0.1 | |
* Author: WP Zinc | |
* Author URI: http://www.wpzinc.com | |
* Description: Modify the {content} output by converting paragraphs to breaklines | |
*/ |
NewerOlder