This file contains hidden or 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
| --- | |
| name: video-publish-workflow | |
| description: Complete YouTube video publishing workflow that chains thumbnail generation, upload, transcript extraction, and content repurposing. Use when user says "publish video", "full video workflow", "upload and repurpose", or provides a video file with title for end-to-end YouTube publishing with content distribution. | |
| --- | |
| # Video Publish Workflow | |
| Orchestrate the complete video publishing pipeline by chaining existing skills. | |
| ## Required Inputs |
This file contains hidden or 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
| // get total entries count | |
| $contestant_id = 1; | |
| $tablename = $wpdb->prefix . 'rafflepress_entries'; | |
| $sql = "SELECT count(id) FROM $tablename WHERE contestant_id = %d AND deleted_at IS NULL"; | |
| $safe_sql = $wpdb->prepare( $sql, $contestant['id'] ); | |
| $total_entries = $wpdb->get_var( $safe_sql ); | |
| $contestant['total_entries'] = $total_entries; |
This file contains hidden or 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 | |
| update_option( 'seedprod_token', wp_generate_uuid4() ); |
This file contains hidden or 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
| { | |
| "show_header_template":true, | |
| "show_footer_template":true, | |
| "no_conflict_mode":false, | |
| "no_index":false, | |
| "seo_title":"", | |
| "seo_description":"", | |
| "favicon":"", | |
| "social_thumbnail":"", | |
| "enable_recaptcha":false, |
This file contains hidden or 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
| <a id='COCBadgeURL' href='https://www.chamberofcommerce.com/united-states/colorado/denver/massage-therapist/2013293472-gentle-myofascial-release?source=memberwebsite' target='_tab' rel='noopener'><img style='width:auto;height:150px;' id='COCBadgeIMG' src='https://coc.codes/images/badge/2013293472'></a> |
This file contains hidden or 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 | |
| // https://simplehtmldom.sourceforge.io/ | |
| include_once('simple_html_dom.php'); | |
| function semi_it( $string ) { | |
| return rtrim( $string, ';' ) . ';'; | |
| } | |
| function generate_random_string($length = 10) { | |
| $characters = '0123456789abcdefghijklmnopqrstuvwxyz'; |
This file contains hidden or 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 | |
| // we have a product upload record in our db. That upload record has things like: | |
| //slug, zipfile, current_verison, wordpress_version_required, test_to, upgrade_notice etc | |
| // when a update request comes in we run our checks. | |
| // for example if we are checking for a legacy version | |
| $is_legacy = false; | |
| $latest_legacy_version = '5.12.8'; |
This file contains hidden or 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: RafflePress Invent Your Own | |
| Plugin URI: | |
| Description: Programmatically Add User and Complete Actions in RafflePress | |
| Version: | |
| Author: | |
| Author URI: | |
| License: | |
| License URI: |
This file contains hidden or 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 if (empty($giveaway->slug) || !empty($_GET['iframe'])) { ?> | |
| <meta name="robots" content="noindex"> | |
| <?php } ?> |
NewerOlder