/** * KIC Universal Diagnostic Tool – PASSIVE VERSION * * A comprehensive diagnostic tool for debugging KIC Enterprise systems * SAFE TO KEEP ACTIVE PERMANENTLY – Does NOTHING until you access it! * * HOW IT WORKS: * –…Continue reading
/** * WPCode Snippet: WPCode Snippets Sync Engine * Description: Synchronizes WPCode snippets FROM wpcode CPT TO wpcode_snippets_sync CPT * Location: Run Everywhere * Priority: 20 * * INSTALL ORDER: #3 – Install after ACF fields are registered * *…Continue reading
/** * WPCode Snippet: WPCode Snippets Sync CPT Registration * Description: Registers shadow CPT for syncing WPCode snippets to REST API * Location: Run Everywhere * Priority: 5 * * INSTALL ORDER: #1 – Install this first * * IMPORTANT:…Continue reading
/** * WPCode Snippet: ACF Fields for WPCode Snippets Sync * Description: Registers ACF fields to store WPCode snippet data in sync CPT * Location: Run Everywhere * Priority: 10 * * INSTALL ORDER: #2 – Install after CPT registration,…Continue reading
/** * WPCode Snippet: REST API Enhancements for WPCode Snippets Sync * Description: Exposes wpcode_snippets_sync CPT fields via REST API for WhaleSync * Location: Run Everywhere * Priority: 15 * * INSTALL ORDER: #4 – Install last, after sync system…Continue reading
// Add duplicate button to post/page list of actions. add_filter( ‘post_row_actions’, ‘wpcode_snippet_duplicate_post_link’, 10, 2 ); add_filter( ‘page_row_actions’, ‘wpcode_snippet_duplicate_post_link’, 10, 2 ); // Let’s make sure the function doesn’t already exist. if ( ! function_exists( ‘wpcode_snippet_duplicate_post_link’ ) ) { /** *…Continue reading
// Add duplicate button to post/page list of actions. add_filter( ‘post_row_actions’, ‘wpcode_snippet_duplicate_post_link’, 10, 2 ); add_filter( ‘page_row_actions’, ‘wpcode_snippet_duplicate_post_link’, 10, 2 ); // Let’s make sure the function doesn’t already exist. if ( ! function_exists( ‘wpcode_snippet_duplicate_post_link’ ) ) { /** *…Continue reading
/** * After enabling this snippet, go to Settings > Permalinks and click “Save Changes” * Configure the $enabled_post_types array to specify which post types should support .md URLs */ $enabled_post_types = [ ‘post’, ‘page’ ]; // Add rewrite rule…Continue reading