default.php
17 lines
| 1 | <?php |
| 2 | /** |
| 3 | * User: shahnuralam |
| 4 | * Date: 6/25/18 |
| 5 | * Time: 12:29 AM |
| 6 | */ |
| 7 | if (!defined('ABSPATH')) die(); |
| 8 | ?> |
| 9 | <div class="card card-author"> |
| 10 | <div class="card-body text-center"> |
| 11 | <?php echo get_avatar($user->user_email, 512, '', $user->display_name, array('class' => 'img-circle')); ?> |
| 12 | <h3 class="author-name"><a href="<?php echo get_author_posts_url($user->ID); ?>"><?php echo $user->display_name; ?></a></h3> |
| 13 | <div class="text-muted"><?php echo count_user_posts( $user->ID , "wpdmpro" ); ?> Stories</div> |
| 14 | </div> |
| 15 | </div> |
| 16 | |
| 17 |