在我为网球俱乐部设计的模板中,我遇到了一个很好的渲染短代码的问题。然而,现在我想集成标准的WordPress库,它是由一个短代码实现的,但该短代码并没有显示为普通的库,而是显示为没有任何图像的文本。有没有办法解决这个问题?
代码:
<?php get_header(); ?>
<?php $options = get_option(\'tcs_theme_options\'); ?>
<section id="page-content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="headerpic">
<?php
$url = get_the_permalink();
$title = get_the_title();
$content = get_the_content();
$categories = get_the_category(\', \');
$date = get_the_date(\'d.m.Y\');
if (has_post_thumbnail()) {
the_post_thumbnail();
} else {
slideshow();
}?>
</div>
<section class="content">
<h1><a href="<?php echo $url; ?>"><?php echo $title; ?></a><span style="font-size: 14px;"></span></h1>
<p><?php echo $content; ?></p>
<div class="options col-xs-12">
<span class="fa fa-calendar pull-right"> <?php echo $date; ?></span>
</div>
</section>
<?php endwhile; endif; ?>
</section>
<?php get_sidebar(); ?>
<div class="clearfix"></div>
<?php get_footer(); ?>