Skip to content

Instantly share code, notes, and snippets.

@shemul49rmc
shemul49rmc / Display related posts in Genesis based on Category
Created October 24, 2013 20:56
Display related posts in Genesis based on Category
@shemul49rmc
shemul49rmc / Display Related Posts in Genesis based on Tags
Created October 24, 2013 21:15
Display Related Posts in Genesis based on Tags
@shemul49rmc
shemul49rmc / Styling the related posts in Genesis Theme
Created October 24, 2013 21:15
Styling the related posts in Genesis Theme
@shemul49rmc
shemul49rmc / Remove Query Strings Script Version From Static Resources
Created October 24, 2013 21:17
Remove Query Strings Script Version From Static Resources
function _remove_script_version( $src ){
$parts = explode( '?ver', $src );
return $parts[0];
}
add_filter( 'script_loader_src', '_remove_script_version', 15, 1 );
add_filter( 'style_loader_src', '_remove_script_version', 15, 1 );
@shemul49rmc
shemul49rmc / Edit 404 Page heading
Created October 24, 2013 21:19
Edit 404 Page heading
<h1 class="entry-title">%s</h1>', __( '<span style="color: #ff0000;">Not found, error 404</span>', 'genesis' ) );
@shemul49rmc
shemul49rmc / How to Edit 404 Page Error Message:
Created October 24, 2013 21:20
How to Edit 404 Page Error Message:
<p><?php printf( __( 'The page you are looking for no longer exists. Perhaps you can return back to the site\'s <a href="%s">homepage</a> and see if you can find what you are looking for. Or, you can try finding it with the information below.', 'genesis' ), home_url() ); ?></p>
@shemul49rmc
shemul49rmc / How To Reduce the Number of Recent Posts in 404 Page:
Created October 24, 2013 21:20
How To Reduce the Number of Recent Posts in 404 Page
<h4><?php _e( 'Recent Posts:', 'genesis' ); ?></h4>
<ul>
<?php wp_get_archives( 'type=postbypost&limit=100' ); ?>
</ul>
@shemul49rmc
shemul49rmc / Remove Featured Post on eleven40 Theme:
Created October 24, 2013 21:22
Remove Featured Post on eleven40 Theme:
<?php
remove_action( 'genesis_loop', 'genesis_do_loop' );
add_action( 'genesis_loop', 'eleven40_grid_loop_helper' );
/** Add support for Genesis Grid Loop */
function eleven40_grid_loop_helper() {
if ( function_exists( 'genesis_grid_loop' ) ) {
genesis_grid_loop( array(
'features' => 0,
@shemul49rmc
shemul49rmc / How to Add Content Boxes and Color Buttons in Genesis
Last active December 26, 2015 11:39
How to Add Content Boxes and Color Buttons in Genesis
Add Content Boxes in Genesis:
<div class="content-box-blue">Enter your content box text here.</div>
Add Color Button in Genesis:
<a class="button-blue" href="#">Blue Button Link</a>
@shemul49rmc
shemul49rmc / Add Content Box CSS to Your Style Sheet
Created October 24, 2013 21:27
Add Content Box CSS to Your Style Sheet
/* Content Boxes
------------------------------------------------------------ */
.content-box-blue,
.content-box-gray,
.content-box-green,
.content-box-purple,
.content-box-red,
.content-box-yellow {
margin: 0 0 25px;