// 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 )); }
//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' );
// functions.php function sp_change_footer_admin () { echo ' '; } add_filter('admin_footer_text', 'sp_change_footer_admin');
// functions.php add_filter( 'allowed_block_types', 'sp_allowed_block_types', 10, 2 ); function sp_allowed_block_types( $allowed_blocks, $post ) { $allowed_blocks = array( 'core/image', 'core/paragraph', 'core/heading', 'core/list' ); if( $post->post_type === 'page' ) { $allowed_blocks[] = 'core/shortcode'; } return $allowed_blocks; }
// 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.
// functions.php function wpb_total_posts() { $total = wp_count_posts()->publish; echo $total; }
// Any page or template <?php wpb_total_posts() ?>
// functions.php function sp_wp_login_url() { return home_url(); } add_filter('login_headerurl', 'sp_wp_login_url');
// 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 ); ?>
// Any page or template <?php wp_list_categories( array( 'orderby' => 'name', 'include' => array( 3, 5, 9, 16 ) ) ); ?>
<?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' => '', ) ); ?>