Increase WP Remote Request Timeout for Snippet URLs
add_filter( ‘http_request_args’, function( $args, $url ) { if ( strpos( $url, ‘snippet/save’ ) !== false ) { $args[‘timeout’] = 15; } return $args; }, 10, 2 );Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
add_filter( ‘http_request_args’, function( $args, $url ) { if ( strpos( $url, ‘snippet/save’ ) !== false ) { $args[‘timeout’] = 15; } return $args; }, 10, 2 );Continue reading
class GPEP_Edit_Entry { private $form_id; private $delete_partial; private $passed_through_entries; private $refresh_token; private $process_feeds; public function __construct( $options ) { if ( ! function_exists( ‘rgar’ ) ) { return; } $this->form_id = rgar( $options, ‘form_id’ ); $this->delete_partial = rgar( $options, ‘delete_partial’,…Continue reading
function custom_generateblocks_query_loop_args( $query_args, $attributes ) { // Check if the query is for the specific block where you want to apply the custom order if ( ! empty( $attributes[‘query’] ) && isset( $attributes[‘query’][‘postIds’] ) ) { // Ensure the post…Continue reading
/* Change the email summary email address * * Original doc: https://wpmailsmtp.com/docs/changing-the-email-summary-email-address/ */ add_filter( ‘wp_mail_smtp_reports_emails_summary_send_to’, function ( $email ) { return ‘[email protected]’; } );Continue reading
/** * Ensures the canonical URL ends with a slash. * * This function checks if the provided canonical URL ends with a slash (‘/’). If not, it appends one. * * @param string $canonical The current page’s generated canonical…Continue reading
function wpf_dev_modern_dropdown_search_results( $config, $forms ) { $config[‘shouldSort’] = true; $config[‘shouldSortItems’] = false; $config[‘sortBy’] = ‘label’; // Sort by label to achieve alphabetical sorting return $config; } add_filter( ‘wpforms_field_select_choicesjs_config’, ‘wpf_dev_modern_dropdown_search_results’, 10, 2 );Continue reading