This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
hale/user-profile.php
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
31 lines (28 sloc)
559 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Template Name: User Profile | |
*/ | |
get_header(); | |
?> | |
<div class="row" id="primary"> | |
<div class="user-profile"> | |
<div class="span3 append1"> | |
<?php | |
uup_display_user(); | |
?> | |
</div> | |
<div class="span8"> | |
<div class="content post clearfix"> | |
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> | |
<h2><?php the_title(); ?></h2> | |
<?php the_content(); ?> | |
<?php endwhile; else: ?> | |
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p> | |
<?php endif; ?> | |
</div> | |
</div> | |
</div> | |
</div> | |
<?php | |
get_footer(); | |
?> |