Skip to content

Instantly share code, notes, and snippets.

View IkeTen's full-sized avatar

Ike Ten IkeTen

View GitHub Profile
@IkeTen
IkeTen / gist:eaddbf3559f1c12423d9c0c96a6a2138
Created October 29, 2016 05:33 — forked from generatepress/gist:a2e15b0eaae6edca8324
Add the time to the published and modified date in generate_posted_on()
if ( ! function_exists( 'generate_posted_on' ) ) :
/**
* Prints HTML with meta information for the current post-date/time and author.
*/
function generate_posted_on() {
if ( 'post' !== get_post_type() )
return;
$date = apply_filters( 'generate_post_date', true );
@IkeTen
IkeTen / gist:ef9613bc81a613601159379d5b58de1a
Created October 29, 2016 05:30 — forked from generatepress/gist:cc2d8b578c8c3706dcefe68234ca5c9f
show the category description only on the first page, generate_archive_title()
if ( ! function_exists( 'generate_archive_title' ) ) :
/**
* Build the archive title
*
* @since 1.3.24
*/
add_action( 'generate_archive_title','generate_archive_title' );
function generate_archive_title()
{
?>
@IkeTen
IkeTen / custom-search-acf-wordpress.php
Created October 23, 2016 07:06 — forked from charleslouis/custom-search-acf-wordpress.php
PHP - Wordpress - Search - wordpress custom search function that encompasses ACF/advanced custom fields and taxonomies and split expression before request
<?php
/**
* [list_searcheable_acf list all the custom fields we want to include in our search query]
* @return [array] [list of custom fields]
*/
function list_searcheable_acf(){
$list_searcheable_acf = array("title", "sub_title", "excerpt_short", "excerpt_long", "xyz", "myACF");
return $list_searcheable_acf;
}
@IkeTen
IkeTen / template-tags.php
Created October 16, 2016 22:38 — forked from generatepress/template-tags.php
Add "Previous" and "Next" text before next/prev links on single.php
if ( ! function_exists( 'generate_content_nav' ) ) :
/**
* Display navigation to next/previous pages when applicable
*/
function generate_content_nav( $nav_id ) {
global $wp_query, $post;
// Don't print empty markup on single pages if there's nowhere to navigate.
if ( is_single() ) {
@IkeTen
IkeTen / gist:e048440cad321414a803e335d0bb50f4
Created October 15, 2016 23:32 — forked from generatepress/gist:a4dad1626caeeb3e1726
Move the featured image above the navigation (when set to below header)
add_action( 'wp','generate_move_featured_image' );
function generate_move_featured_image()
{
remove_action('generate_after_header','generate_featured_page_header', 10);
add_action('generate_after_header','generate_featured_page_header', 4);
}