// Core updates add_filter( 'auto_core_update_send_email', 'wpb_stop_auto_update_emails', 10, 4 ); function wpb_stop_update_emails( $send, $type, $core_update, $result ) { if ( ! empty( $type ) && $type == 'success' ) { return false; } return true; } // Plugins updates add_filter( 'auto_plugin_update_send_email', '__return_false' ); //Themes updates add_filter( 'auto_theme_update_send_email', '__return_false' );
// functions.php function luckywp_output( $args ) { $args = array( 'container' => 'nav', 'container_class' => 'main-menu', 'items_wrap' => '<ul>%3$s</ul>', 'menu_id' => '', 'menu_class' => '' ); return $args; } // add the filter add_filter( 'lwpamf_wp_nav_menu_args', ' luckywp_output', 10, 2 );
add_action('acf/init', 'sp_register_blocks'); function sp_register_blocks() { // check if function exists. if( function_exists('acf_register_block_type') ) { // register the block. acf_register_block_type(array( 'name' => 'block-name', 'title' => __('Block name'), 'description' => __('A xxx block build with ACF to display images.'), 'render_template' => 'partials/blocks/block-name/block.php', 'category' => 'common', 'icon' => 'images-alt2', 'align' => 'wide', 'enqueue_assets' => function(){ // Enqueue script if needed by the block wp_enqueue_script( 'block-name', get_template_directory_uri() . '/partials/blocks/block-name/script.js', array(), '1.0.0', true ); }, )); } }
// into any page or template <?php $image = get_field('image'); if( !empty( $image ) ): ?> <img src="<?php echo esc_url($image['url']); ?>" alt="<?php echo esc_attr($image['alt']); ?>" /> <?php endif; ?>
// into any page or template <?php // Check rows exists. if( have_rows('repeater_field_name') ): // Loop through rows. while( have_rows('repeater_field_name') ) : the_row(); // Load sub field value. $sub_value = get_sub_field('sub_field'); // Do something... // End loop. endwhile; // No value. else : // Do something... endif; ?>
// into any page or template <?php if( get_field('text_field') ): the_field('text_field'); endif; ?>
// into any page or template <?php the_field('text_field'); ?>
// into any page or template <?php if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb( '<p id="breadcrumbs">','</p>' ); }
// functions.php if( function_exists('acf_add_options_page') ) { acf_add_options_page(array( 'page_title' => 'Page title', 'menu_title' => 'Page title', 'menu_slug' => 'Page title', 'capability' => 'edit_posts', 'redirect' => false )); }
Ajax Search Pro is a great plugin by Ernest Marcinko.
But sometimes removing all css styling could be useful to get full control over search forms design.
add_filter( 'asp_load_css', 'asp_stop_load_css', 10, 1 ); function asp_stop_load_css( $stop ) { return true; }