Skip to content

Instantly share code, notes, and snippets.

@GaryJones
GaryJones / readme.md
Last active July 14, 2019 20:46
Custom Featured Post Widget plugin: Skeleton for amending the output of the Genesis Featured Post widget.
@rfmeier
rfmeier / functions.php
Last active June 14, 2017 15:10
Make the Genesis Featured Post widget title link to the specified category archives.
<?php
add_filter( 'widget_title', 'custom_widget_title', 10, 3 );
/**
* Callback for WordPress 'widget_title' filter.
*
* Create a link for the title of the Genesis Featured Widget if a category is
* specified.
*
* @package WordPress
<?php
/* Template Name: Test */
/**
* Genesis custom loop
*/
function be_custom_loop() {
global $post;
// arguments, adjust as needed
@billerickson
billerickson / genesis-custom-loop-pagination.php
Created July 31, 2012 15:59
Genesis custom loop with pagination
<?php
/* Template Name: Test */
/**
* Genesis custom loop
*/
function be_custom_loop() {
global $post;
// arguments, adjust as needed