File Editor
Directories:
.. (Back)
assets
customizer
framework
frontpage
languages
lib
template_parts
Files:
404.php
author.php
category.php
comments.php
footer.php
functions.php
header.php
index.php
page.php
readme.txt
search.php
sidebar.php
single.php
style.css
style_core.css
tag.php
woocommerce.php
Create New File
Create
Edit File: author.php
<?php /** * The Author page for Optimizer * * Displays The Author page template * * @package Optimizer * * @since Optimizer 1.0 */ global $optimizer;?> <?php get_header(); ?> <?php //Get the user data if(isset($_GET['author_name'])) : $curauth = get_userdatabylogin($author_name); else : $curauth = get_userdata(intval($author)); endif; ?> <div class="author_wrap layer_wrapper"> <!--AUTHOR BIO START--> <div class="author_div"> <div class="author_left"><?php echo get_avatar($curauth->ID, $size = '100'); ?></div> <div class="author_right"> </div> <h3 class="author_posts"><span><?php _e('Posts by ', 'optimizer');?></span><?php echo $curauth->display_name; ?></h3> </div> <!--AUTHOR BIO END--> <div id="content"> <!--AUTHOR POSTS START--> <?php get_template_part('template_parts/post','layout4'); ?> </div><!--#content END--> </div><!--layer_wrapper class END--> <?php get_footer(); ?>
Save Changes
Rename File
Rename