2024-01-09 16:13:20 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Template part for displaying posts
|
|
|
|
*
|
|
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
|
|
|
*
|
2024-01-13 15:46:11 +01:00
|
|
|
* @package Xarxaprod_theme
|
2024-01-09 16:13:20 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
|
|
<header class="entry-header">
|
2024-04-03 03:21:48 +02:00
|
|
|
<h1 class="entry-title">
|
|
|
|
<?php the_title(); ?>
|
|
|
|
</h1>
|
2024-01-09 16:13:20 +01:00
|
|
|
|
2024-04-03 03:21:48 +02:00
|
|
|
<?php
|
2024-01-09 16:13:20 +01:00
|
|
|
if ( 'post' === get_post_type() ) :
|
|
|
|
?>
|
|
|
|
<div class="entry-meta">
|
2024-04-03 03:21:48 +02:00
|
|
|
<?php if ( in_category('faq') ){
|
|
|
|
// display each faq category of the post as label
|
2024-01-13 15:46:11 +01:00
|
|
|
xarxaprod_display_each_faq_categories();
|
2024-03-11 19:23:10 +01:00
|
|
|
} ;?>
|
|
|
|
|
2024-04-03 03:21:48 +02:00
|
|
|
</div><!-- .entry-meta -->
|
|
|
|
<?php endif; ?>
|
|
|
|
</header><!-- .entry-header -->
|
2024-01-09 16:13:20 +01:00
|
|
|
|
|
|
|
<div class="entry-content">
|
|
|
|
<?php
|
|
|
|
the_content(
|
|
|
|
sprintf(
|
|
|
|
wp_kses(
|
|
|
|
/* translators: %s: Name of current post. Only visible to screen readers */
|
2024-01-13 15:46:11 +01:00
|
|
|
__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'xarxaprod' ),
|
2024-01-09 16:13:20 +01:00
|
|
|
array(
|
|
|
|
'span' => array(
|
|
|
|
'class' => array(),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
),
|
|
|
|
wp_kses_post( get_the_title() )
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
wp_link_pages(
|
|
|
|
array(
|
2024-01-13 15:46:11 +01:00
|
|
|
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'xarxaprod' ),
|
2024-01-09 16:13:20 +01:00
|
|
|
'after' => '</div>',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
?>
|
|
|
|
</div><!-- .entry-content -->
|
|
|
|
|
|
|
|
<footer class="entry-footer">
|
2024-01-13 15:46:11 +01:00
|
|
|
<?php //xarxaprod_entry_footer(); ?>
|
2024-01-09 16:13:20 +01:00
|
|
|
</footer><!-- .entry-footer -->
|
|
|
|
</article><!-- #post-<?php the_ID(); ?> -->
|