forked from xwolfde/Piratenkleider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaxonomy-topic-tag-edit.php
45 lines (45 loc) · 1.71 KB
/
taxonomy-topic-tag-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
45
<?php
get_header();
global $defaultoptions;
global $options;
?>
<div class="section content" id="main-content">
<div class="row">
<div class="content-primary">
<?php
do_action('bbp_before_main_content');
$image_url = piratenkleider_get_cover(sprintf(__('Topic Tag: %s', 'bbpress'), bbp_get_topic_tag_name()), get_the_ID());
?>
<div class="skin">
<?php
do_action('bbp_template_notices');
if (!(isset($image_url) && (strlen($image_url) > 4))) {
echo ' <h1 id="page-title"><span>';
printf(__('Topic Tag: %s', 'bbpress'), bbp_get_topic_tag_name());
echo'</span></h1>';
}
?>
<div id="topic-tag" class="bbp-topic-tag">
<div class="entry-content">
<?php bbp_get_template_part('content', 'topic-tag-edit'); ?>
</div>
</div><!-- #topic-tag -->
</div>
<?php do_action('bbp_after_main_content'); ?>
</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(); ?>