-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-single.php
43 lines (40 loc) · 1.46 KB
/
content-single.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
<?php
/**
* @package iPanelThemes Knowledgebase
*/
global $ipt_theme_op_settings;
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header page-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
<hr>
<span class="sen-time" style="margin-right:15px;"> <b>Tarih:</b> <?php the_time('d.m.Y') ?> </span> <span class="last-updated-time"> <b>Son güncelleme:</b> <time itemprop="dateModified" content="<?php the_modified_date('d.m.Y'); ?>"><?php the_modified_date('d.m.Y'); ?></time> </span>
<div class="entry-meta text-muted">
<hr>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<?php if ( isset( $ipt_theme_op_settings['ads'] ) && '' != trim( $ipt_theme_op_settings['ads']['below_title'] ) ) : ?>
<div class="title-advertisement">
<?php echo trim( $ipt_theme_op_settings['ads']['below_title'] ); ?>
</div>
<?php endif; ?>
<div class="entry-content">
<?php if ( of_get_option( 'reklam_2' ) ) { ?>
<div class="reklamnet">
<?php echo of_get_option( 'reklam_2', '' ); ?>
</div>
<?php } ?>
<?php the_content(); ?>
<?php if ( of_get_option( 'reklam_1' ) ) { ?>
<div class="reklamnet">
<?php echo of_get_option( 'reklam_1', '' ); ?>
</div>
<?php } ?>
<?php
wp_link_pages( array(
'before' => __( '<p class="pagination-p">Pages:</p>', 'ipt_kb' ) . '<ul class="pagination">',
'after' => '</ul><div class="clearfix"></div>',
) );
?>
</div><!-- .entry-content -->
</article><!-- #post-## -->