Snippets repository for WordPress developpers

Browse
// 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:
//functions.php
function sp_register_scripts() {
  $theme_version = wp_get_theme()->get( 'Version' );
  // css
  wp_enqueue_style( 'snippress-style', get_stylesheet_uri(), array(), $theme_version );
  wp_enqueue_style( 'snippress-custom-styles', get_template_directory_uri() . '/assets/css/main.min.css' );
  // js
  wp_enqueue_script( 'main-script', get_template_directory_uri() . '/assets/js/main.min.js', array ( 'jquery' ), 1.1, true);
  wp_enqueue_script( 'slick', get_template_directory_uri() . '/assets/js/lib/script-name.min.js', array ( 'jquery' ), 1.1, true);
}
add_action( 'wp_enqueue_scripts', 'sp_register_scripts' );
Tags: ,
// functions.php
<?php
function sp_google_analytics() { ?>
  <!-- Global site tag (gtag.js) - Google Analytics -->
  <script async src="https://www.googletagmanager.com/gtag/js?id=UA-xxxxxxxxxx"></script>
  <script>
    window.dataLayer = window.dataLayer || [];
    function gtag(){
      dataLayer.push(arguments);
    }
    gtag('js', new Date());
    gtag('config', 'UA-xxxxxxxxxx');
  </script>
<?php
}
add_action( 'wp_head', 'sp_google_analytics' );
?>

Will correctly add Google Analytics code into the website <head> tag.

Tags:
// functions.php
<?php
function sp_custom_logo_login() {
  if ( has_custom_logo() ) :
    $image = wp_get_attachment_image_src( get_theme_mod( 'custom_logo' ), 'full' );
  ?>
    <style type="text/css">
      .login h1 a {
        background-image: url(<?php echo esc_url( $image[0] ); ?>);
        background-size: <?php echo absint( $image[1] ) ?>px;
        height: <?php echo absint( $image[2] ) ?>px;
        width: <?php echo absint( $image[1] ) ?>px;
      }
    </style>
  <?php
  endif;
}
add_action( 'login_head', 'sp_custom_logo_login', 100 );
?>
Tags:
<?php 
  echo paginate_links( array(
    base'         => str_replace( 999999999, '%#%', esc_url( get_pagenum_link( 999999999 ) ) ),
    'total'        => $query->max_num_pages,
    'current'      => max( 1, get_query_var( 'paged' ) ),
    'format'       => '?paged=%#%',
    'show_all'     => false,
    'type'         => 'plain',
    'end_size'     => 2,
    'mid_size'     => 1,
    'prev_next'    => true,
    'prev_text'    => sprintf( '<i></i> %1$s', __( 'Newer Posts', 'text-domain' ) ),
    'next_text'    => sprintf( '%1$s <i></i>', __( 'Older Posts', 'text-domain' ) ),
    'add_args'     => false,
    'add_fragment' => '',
   ) );
?>

Categories

Tags