Don’t stripe double quotes for outgoing Automator webhooks
add_filter( ‘automator_send_webhook_get_fields_should_strip_qoutes’, ‘__return_false’ );Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
add_filter( ‘automator_send_webhook_get_fields_should_strip_qoutes’, ‘__return_false’ );Continue reading
add_filter( ‘automator_disable_object_cache’, ‘__return_true’, 99, 2 );Continue reading
/** * Form revision * @link https://wpforms.com/docs/how-to-use-form-revisions-in-wpforms/ */ add_filter( ‘wp_wpforms_revisions_to_keep’, function() { return -1; // -1 for unlimited, 0 to turn them off, >0 to set a specific limit } );Continue reading
function sort_posts_by_category($query) { if ($query->is_main_query() && !is_admin()) { $oldest_first_categories = array(1483,1486,1485,1484,1482,1391); // Replace with the IDs of the categories where you want to display oldest posts first if (is_category($oldest_first_categories)) { // $query->set(‘order’, ‘ASC’); // $query->set(‘orderby’, ‘date’); $query->set( ‘meta_key’, ‘start-date’ );…Continue reading
/** * Replace the `ver` query arg with the file’s last modified timestamp * * @param string $src URL to a file * @return string Modified URL to a file */ function filter_cache_busting_file_src( $src = ” ) { global $wp_scripts;…Continue reading
/** * Simplify generating post type labels by only needing to enter a singular and plural verison * * @param string $singular The singular version of the post type label * @param string $plural The plural version of the post…Continue reading
add_filter( ‘aioseo_description’, ‘aioseo_filter_description’ ); function aioseo_filter_description( $description ) { $exclude = [15,223]; if ( false !== in_array( get_the_ID(), $exclude ) ) { return ”; } return $description; }Continue reading
/** * Add the unfiltered_html capability to the editor role. * Be careful which users you grant this capability to. */ add_filter( ‘map_meta_cap’, function ( $caps, $cap, $user_id ) { // Change editor with the user role you want to…Continue reading