Snippets repository for WordPress developpers

Browse

// 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' );
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 );
      },
    ));
  }
}
Tags:
Source
// 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;
?>
Tags:
Source
// 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
  ));
}
Tags:

Categories

Tags