hello
Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : chryzalihi ( 621211) PHP Version : 8.3.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Directory : /home/c/h/r/chryzalihi/www/wp-contentOLD/themes/unite/ |
<?php
/**
* @package unite
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header page-header">
<?php
if ( unite_get_option( 'single_post_image', 1 ) == 1 ) :
the_post_thumbnail( 'unite-featured', array( 'class' => 'thumbnail' ));
endif;
?>
<h1 class="entry-title "><?php the_title(); ?></h1>
<div class="entry-meta">
<?php unite_posted_on(); ?>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'unite' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
<footer class="entry-meta">
<?php
/* translators: used between list items, there is a space after the comma */
$category_list = get_the_category_list( __( ', ', 'unite' ) );
/* translators: used between list items, there is a space after the comma */
$tag_list = get_the_tag_list( '', __( ', ', 'unite' ) );
if ( ! unite_categorized_blog() ) {
// This blog only has 1 category so we just need to worry about tags in the meta text
if ( '' != $tag_list ) {
$meta_text = '<i class="fa fa-folder-open-o"></i> %2$s. <i class="fa fa-link"></i> <a href="%3$s" rel="bookmark">'.esc_html__('permalink','unite').'</a>.';
} else {
$meta_text = '<i class="fa fa-link"></i> <a href="%3$s" rel="bookmark">'.esc_html__('permalink','unite').'</a>.';
}
} else {
// But this blog has loads of categories so we should probably display them here
if ( '' != $tag_list ) {
$meta_text = '<i class="fa fa-folder-open-o"></i> %1$s <i class="fa fa-tags"></i> %2$s. <i class="fa fa-link"></i> <a href="%3$s" rel="bookmark">'.esc_html__('permalink','unite').'</a>.';
} else {
$meta_text = '<i class="fa fa-folder-open-o"></i> %1$s. <i class="fa fa-link"></i> <a href="%3$s" rel="bookmark">'.esc_html__('permalink','unite').'</a>.';
}
} // end check for categories on this blog
printf(
$meta_text,
$category_list,
$tag_list,
esc_url(get_permalink())
);
?>
<?php edit_post_link( __( 'Edit', 'unite' ), '<i class="fa fa-pencil-square-o"></i><span class="edit-link">', '</span>' ); ?>
<hr class="section-divider">
</footer><!-- .entry-meta -->
</article><!-- #post-## -->