Skip to content

Instantly share code, notes, and snippets.

@aristath
Forked from anonymous/gist:5612533
Last active December 17, 2015 12:49
Show Gist options
  • Save aristath/5612536 to your computer and use it in GitHub Desktop.
Save aristath/5612536 to your computer and use it in GitHub Desktop.
<?php
// Exit if accessed directly
if ( !defined('ABSPATH')) exit;
/**
* Pages Template
*
*
* @file page.php
* @package Responsive
* @author Emil Uzelac
* @copyright 2003 - 2013 ThemeID
* @license license.txt
* @version Release: 1.0
* @filesource wp-content/themes/responsive/page.php
* @link http://codex.wordpress.org/Theme_Development#Pages_.28page.php.29
* @since available since Release 1.0
*/
get_header(); ?>
<div id="content" class="<?php echo implode( ' ', responsive_get_content_classes() ); ?>">
<?php $args = array(
'orderby' => 'name',
'order' => 'ASC',
'number' => null,
'optioncount' => false,
'exclude_admin' => true,
'show_fullname' => false,
'hide_empty' => true,
'echo' => true,
'feed' => [empty string],
'feed_image' => [empty string],
'feed_type' => [empty string],
'style' => list,
'html' => true
);
wp_list_authors( $args );
?>
</div><!-- end of #content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment