לא עובד:
<?php
/*
Template Name: homepage
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
if ( have_posts() ) :
while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( po_breadcrumbs_need_to_show() ) : ?>
<?php pojo_breadcrumbs(); ?>
<?php endif; ?>
<?php if ( pojo_is_show_page_title() ) : ?>
<header class="page-title">
<h1><?php the_title(); ?></h1>
</header>
<?php endif; ?>
<div class="entry-content">
<?php if ( ! Pojo_Core::instance()->builder->display_builder() ) : ?>
<?php the_content(); ?>
<?php pojo_link_pages(); ?>
<?php endif; ?>
</div>
<footer>
<?php pojo_button_post_edit(); ?>
</footer>
</article>
<?php
// Previous/next post navigation.
echo pojo_get_post_navigation(
array(
'prev_text' => __( '« Previous', 'pojo' ),
'next_text' => __( 'Next »', 'pojo' ),
)
);
?>
<?php endwhile;
else :
pojo_get_content_template_part( 'content', 'none' );
endif;