mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Template part for displaying page content in page.php
|
||
|
*
|
||
|
* @link https://codex.wordpress.org/Template_Hierarchy
|
||
|
*
|
||
|
* @package WP_Bootstrap_Starter
|
||
|
*/
|
||
|
|
||
|
?>
|
||
|
|
||
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||
|
<?php
|
||
|
$enable_vc = get_post_meta(get_the_ID(), '_wpb_vc_js_status', true);
|
||
|
if(!$enable_vc ) {
|
||
|
?>
|
||
|
<header class="entry-header">
|
||
|
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
|
||
|
</header><!-- .entry-header -->
|
||
|
<?php } ?>
|
||
|
|
||
|
<div class="entry-content">
|
||
|
<?php
|
||
|
the_content();
|
||
|
|
||
|
wp_link_pages( array(
|
||
|
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'wp-bootstrap-starter' ),
|
||
|
'after' => '</div>',
|
||
|
) );
|
||
|
?>
|
||
|
</div><!-- .entry-content -->
|
||
|
|
||
|
<?php if ( get_edit_post_link() && !$enable_vc ) : ?>
|
||
|
<footer class="entry-footer">
|
||
|
<?php
|
||
|
edit_post_link(
|
||
|
sprintf(
|
||
|
/* translators: %s: Name of current post */
|
||
|
esc_html__( 'Edit %s', 'wp-bootstrap-starter' ),
|
||
|
the_title( '<span class="screen-reader-text">"', '"</span>', false )
|
||
|
),
|
||
|
'<span class="edit-link">',
|
||
|
'</span>'
|
||
|
);
|
||
|
?>
|
||
|
</footer><!-- .entry-footer -->
|
||
|
<?php endif; ?>
|
||
|
</article><!-- #post-## -->
|