我创建了一个自定义的帖子类型,但当我为滑块添加一个短代码时,它不会显示滑块,而只显示文本中的短代码。
当我改变的时候get_the_content
通过the_content
, 它只给我显示了一点文字节选。
<?php if ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="singleheader">
<div class="singlettlpart">
<h1 class="singlettl"><?php the_title(); ?></h1>
<?php $post_id = get_the_ID();
$hotel_data = get_post_meta( $post_id, \'_hotel\', true );
$adr = ( empty( $hotel_data[\'adr\'] ) ) ? \'Aucune adresse trouvée\' : $hotel_data[\'adr\'];
echo $adr; ?> <a href="#carte" class="cartelnk">(voir la carte)</a>
</div>
<div class="prxpart">
<h1 class="prxttl">À partir de <br />
<?php
$prx = ( empty( $hotel_data[\'prx\'] ) ) ? \'???\' : $hotel_data[\'prx\'];
echo $prx; ?> € / NUIT
</h1>
</div>
</header><a id="pres"></a>
<div class="singletxt">
<?php
$content = get_the_content();
echo $content; ?>
<a id="pho"></a>
<a id="chm"></a>
<a id="cprx"></a>
</div>
<?php else :
echo \'Pas de hotels pour l\\\'instant\';
endif;?>