mirror of
https://gh.wpcy.net/https://github.com/presscustomizr/hueman.git
synced 2026-04-26 08:22:03 +08:00
* fixed : the option "featured-posts-include" depending on "featured-posts-enabled" was still altering the query even if "featured-posts-enabled" was unchecked in the customizer * fixed : Allow child themes to load translation files : By changing the call of the path on load_theme_textdomain from get_template_directory to get_stylesheet_directory we allow the translation of the theme through child themes. Without this, a child theme won’t load their own language files even by hooking a function on after_setup_theme action callng load_theme_textdomain and/or load_child_theme_textdomain. * added : New option in customizer > Global Settings > Performances and SEO > Use Structured Data Markup. Implements Google Micro-formats compatibility for author, dates, title, entry content. * added : new option in the customizer to control the visibility of the help button and the "About Hueman" admin page * updated : single.php for a better compatibility with wp_pagenavi for multi-part posts * fixed : better titles for the sidebar metaboxes for the single post and page * fixed : primary and secondary widget zone descriptions * updated : German translation de_DE * updated : Italian translation it_IT * updated : Russian translation ru_RU * updated : French translation fr_FR * added : Turkish translation tr_TR * added : Persian translation fa_IR
68 lines
No EOL
2.3 KiB
PHP
68 lines
No EOL
2.3 KiB
PHP
<?php get_header(); ?>
|
|
|
|
<section class="content">
|
|
|
|
<?php get_template_part('parts/page-title'); ?>
|
|
|
|
<div class="pad group">
|
|
|
|
<?php while ( have_posts() ): the_post(); ?>
|
|
<article <?php post_class(); ?>>
|
|
<div class="post-inner group">
|
|
|
|
<h1 class="post-title entry-title"><?php the_title(); ?></h1>
|
|
<?php get_template_part('parts/single-author-date'); ?>
|
|
|
|
<?php if( get_post_format() ) { get_template_part('parts/post-formats'); } ?>
|
|
|
|
<div class="clear"></div>
|
|
|
|
<div class="<?php echo implode( ' ', apply_filters( 'hu_single_entry_class', array('entry','themeform') ) ) ?>">
|
|
<div class="entry-inner">
|
|
<?php the_content(); ?>
|
|
<nav class="pagination group">
|
|
<?php
|
|
//Checks for and uses wp_pagenavi to display page navigation for multi-page posts.
|
|
if ( function_exists('wp_pagenavi') )
|
|
wp_pagenavi( array( 'type' => 'multipart' ) );
|
|
else
|
|
wp_link_pages(array('before'=>'<div class="post-pages">'.__('Pages:','hueman'),'after'=>'</div>'));
|
|
?>
|
|
</nav><!--/.pagination-->
|
|
</div>
|
|
|
|
<?php do_action( 'hu_after_single_entry_inner' ); ?>
|
|
|
|
<div class="clear"></div>
|
|
</div><!--/.entry-->
|
|
|
|
</div><!--/.post-inner-->
|
|
</article><!--/.post-->
|
|
<?php endwhile; ?>
|
|
|
|
<div class="clear"></div>
|
|
|
|
<?php the_tags('<p class="post-tags"><span>'.__('Tags:','hueman').'</span> ','','</p>'); ?>
|
|
|
|
<?php if ( ( hu_is_checked( 'author-bio' ) ) && get_the_author_meta( 'description' ) ): ?>
|
|
<div class="author-bio">
|
|
<div class="bio-avatar"><?php echo get_avatar(get_the_author_meta('user_email'),'128'); ?></div>
|
|
<p class="bio-name"><?php the_author_meta('display_name'); ?></p>
|
|
<p class="bio-desc"><?php the_author_meta('description'); ?></p>
|
|
<div class="clear"></div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( 'content' == hu_get_option( 'post-nav' ) ) { get_template_part('parts/post-nav'); } ?>
|
|
|
|
<?php if ( '1' != hu_get_option( 'related-posts' ) ) { get_template_part('parts/related-posts'); } ?>
|
|
|
|
<?php if ( hu_is_checked('post-comments') ) { comments_template('/comments.php',true); } ?>
|
|
|
|
</div><!--/.pad-->
|
|
|
|
</section><!--/.content-->
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|