2019-03-08 21:21:28 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Template Name: Profile
|
|
|
|
*
|
|
|
|
* The template for displaying all profiles in a directory
|
|
|
|
*
|
|
|
|
* @subpackage wasmo
|
|
|
|
* @since 1.0.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header();
|
|
|
|
?>
|
|
|
|
|
|
|
|
<section id="primary" class="content-area">
|
|
|
|
<main id="main" class="site-main">
|
|
|
|
|
2024-01-25 16:16:38 +00:00
|
|
|
<article class="entry" itemprop="mainEntity" itemtype="https://schema.org/Person" itemscope>
|
2019-03-11 22:09:37 +00:00
|
|
|
<div class="entry-content">
|
|
|
|
<?php
|
|
|
|
$user = wp_get_current_user();
|
|
|
|
$userid = $user->ID;
|
|
|
|
?>
|
|
|
|
<?php set_query_var( 'userid', $userid ); ?>
|
2019-03-12 13:36:03 +00:00
|
|
|
<?php get_template_part( 'template-parts/content/content', 'user' ); ?>
|
2019-03-11 22:09:37 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</article>
|
2019-03-08 21:21:28 +00:00
|
|
|
</main><!-- #main -->
|
|
|
|
</section><!-- #primary -->
|
|
|
|
|
|
|
|
<?php
|
2019-03-14 12:33:15 +00:00
|
|
|
get_footer();
|