forked from xwolfde/Piratenkleider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle-user-edit.php
44 lines (44 loc) · 1.64 KB
/
single-user-edit.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
/**
* bbPress User Profile Edit
*
* @package bbPress
* @subpackage Theme
*/
get_header();
global $defaultoptions;
global $options;
?>
<div class="section content" id="main-content">
<div class="row">
<div class="content-primary">
<?php $image_url = piratenkleider_get_cover(get_the_title(), get_the_ID()); ?>
<div class="skin">
<?php do_action('bbp_before_main_content'); ?>
<?php if (!(isset($image_url) && (strlen($image_url) > 4))) { ?>
<h1 id="page-title"><span><?php the_title(); ?></span></h1>
<?php } ?>
<div id="bbp-user-<?php bbp_current_user_id(); ?>" class="bbp-single-user">
<div class="entry-content">
<?php bbp_get_template_part('content', 'single-user'); ?>
</div><!-- .entry-content -->
</div><!-- #bbp-user-<?php bbp_current_user_id(); ?> -->
<?php do_action('bbp_after_main_content'); ?>
</div>
</div>
<div class="content-aside">
<div class="skin">
<?php
if (!isset($options['aktiv-circleplayer']))
$options['aktiv-circleplayer'] = $defaultoptions['aktiv-circleplayer'];
if ($options['aktiv-circleplayer'] == 1) {
piratenkleider_echo_player();
}
get_sidebar('bbpress');
?>
</div>
</div>
</div>
<?php get_piratenkleider_socialmediaicons(2); ?>
</div>
<?php get_footer(); ?>