modify(جا به جای بخش مسیر راهنما به صفحه هدر) fix(حل بخش لینک نشدن لوگو در صفحه هدر)
29 lines
1.0 KiB
PHP
29 lines
1.0 KiB
PHP
<?php get_header(); ?>
|
|
|
|
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
|
|
|
|
<section class="pages-content">
|
|
<div class="thumbnail-image"><?php the_post_thumbnail(); ?></div>
|
|
<div class="specification-post">
|
|
<span class="category-post"><?php the_category(' '); ?></span>
|
|
<h1 class="post-title"><?php the_title(); ?></h1>
|
|
<p class="short-decs"><?php echo wp_trim_words( get_the_excerpt(), 50, '...' ); ?></p>
|
|
<div class="meta-info">
|
|
<span class="comment"><?php echo get_comments_number(); ?></span>
|
|
<span class="publish-date"><?php echo get_the_date('j F Y'); ?></span>
|
|
<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>">
|
|
<span class="author-name"><?php echo get_the_author_meta( 'display_name', get_the_author_meta( 'ID' ) ); ?></span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="clear"></div>
|
|
<div class="inner-content">
|
|
<?php the_content(); ?>
|
|
</div>
|
|
</section>
|
|
|
|
<?php endwhile; endif; ?>
|
|
|
|
<?php get_sidebar(); ?>
|
|
<?php get_footer(); ?>
|