Type: php
Disable auto – trash emptying
function wpb_remove_schedule_delete() { remove_action( ‘wp_scheduled_delete’, ‘wp_scheduled_delete’ ); } add_action( ‘init’, ‘wpb_remove_schedule_delete’ );Continue reading
php code
Don’t stripe double quotes for outgoing Automator webhooks
add_filter( ‘automator_send_webhook_get_fields_should_strip_qoutes’, ‘__return_false’ );Continue reading
Disable Uncanny Automator Object Cache
add_filter( ‘automator_disable_object_cache’, ‘__return_true’, 99, 2 );Continue reading
Disable Comment Form Website URL
add_filter( ‘comment_form_default_fields’, function ($fields) { if ( isset( $fields[‘url’] ) ) { unset( $fields[‘url’] ); } return $fields; }, 150 );Continue reading
WPForms Revisions to Keep
/** * 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
Sort Events Category by Publish Date (Oldest First)
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
Automatic CSS/JavaScript Cache Busting
/** * 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