-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthor.php
51 lines (47 loc) · 1.93 KB
/
author.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
46
47
48
49
50
51
<?php get_header(); ?>
<div style="padding-left:1px;padding-right:1px;" class="container">
<div style="max-width:100%; width:100%;" class="kutu">
<div class="yazar-sayfasi">
<?php echo get_avatar( get_the_author_meta( 'id' ), 96 ); ?>
<div class="yazar-sayfasi-yazi">
<h5>
<?php the_author( '' ); ?>
<span class="yazar-maili"><?php the_author_meta( 'url' ); ?></span>
</h5>
<p><?php the_author_meta( 'description' ); ?></p></div>
</div>
</div>
</div>
<div style="padding-left:1px;padding-right:1px;" class="container">
<div style="max-width:100%;width:100%;padding: 13px 30px;" class="kutu yazar-kutu">
<div style="margin-bottom:0" class="son-haberler">
<span class="son-yazilar">
<div class="son-yazilar-icon">
<i class="<?php echo cs_get_option( 'yazar-uyenin-yazarlari-icon' ); ?>"></i></div>
<a><?php echo cs_get_option( 'yazar-uyenin-yazarlari' ); ?></a>
</span>
</div>
</div>
</div>
<div class="container">
<div style="padding-left:1px;padding-right:1px;" class="container">
<div class="row mobil-row">
<div class="col-8 kutu">
<?php if ( have_posts() ) : while ( have_posts() ) :
the_post(); ?>
<?php include "inc/post_box.php"; ?>
<?php endwhile; else: ?>
<?php _e( '<div class="bisey-bulunmadi">Bişey bulunmadı...</div>' ); ?>
<?php endif; ?>
<?php include "inc/pagination.php"; ?>
</div>
<div class="col-4 mobil-kutu" style="width: 100%;max-width: 100%;padding-right: 0px;">
<?php
if ( ! dynamic_sidebar( 'sidebar' ) ) :?>
<?php endif; ?>
<?php get_sidebar(); ?>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>