Skip to content

Instantly share code, notes, and snippets.

@CaerolM

CaerolM/404 Page Secret

Last active May 18, 2018 04:52
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 CaerolM/644a51dcdac508c9cd042a30170460fd to your computer and use it in GitHub Desktop.
Save CaerolM/644a51dcdac508c9cd042a30170460fd to your computer and use it in GitHub Desktop.
Edited 404 page in Genesis Sample theme.
<?php
endif;
/* Edit Starts Here */
?>
<h4><?php _e( 'Pages:', 'genesis' ); ?></h4>
<ul>
<?php wp_list_pages( 'title_li=' ); ?>
</ul>
<h4><?php _e( 'Categories:', 'genesis' ); ?></h4>
<ul>
<?php wp_list_categories( 'sort_column=name&title_li=' ); ?>
</ul>
<h4><?php _e( 'Recent Posts:', 'genesis' ); ?></h4>
<ul>
<?php wp_get_archives( 'type=postbypost&limit=5' ); ?>
</ul>
<?php
/* Edit Ends Here */
}
genesis();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment