Skip to content

Instantly share code, notes, and snippets.

@DavidPeralvarez
Created January 12, 2020 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidPeralvarez/0f046d3b3bc133e7bf84c2368f2625c4 to your computer and use it in GitHub Desktop.
Save DavidPeralvarez/0f046d3b3bc133e7bf84c2368f2625c4 to your computer and use it in GitHub Desktop.
Genesis code snippets
<?php
/**
* Child Theme customizations
*/
//* Unregister sidebar/content layout setting
genesis_unregister_layout( 'sidebar-content' );
//* Customize the previous page link
add_filter ( 'genesis_prev_link_text' , 'sp_previous_page_link' );
function sp_previous_page_link ( $text ) {
return '&#x000AB; Anteriores';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment