【发布时间】:2020-11-25 15:04:38
【问题描述】:
联系表格 7 不在我的 wordpress 网站中?但在空白页上工作我的代码有一些问题。 当我将短代码粘贴到我的联系页面时,它不会显示出来。我已经完成了我的 html 和 css 代码构建我还使用了 bootstrap 4.5 代码 联系页面代码
<?php
get_header();
$thumbnail_url = wp_get_attachment_url(get_post_thumbnail_id($post -> ID));
?>
<?php
if(has_post_thumbnail()){ ?>
<section class="about" style="background: url('<?php echo $thumbnail_url; ?>') no-repeat; background-size: cover;">
<div class="hero-text w-100 text-white px-2 px-sm-0">
<h1 class="display-3 brand"><?php echo the_title(); ?></h1>
<p class="lead"><?php echo the_excerpt(); ?></p>
</div>
</section>
<?php } else{ ?>
<section class="about">
<div class="hero-text w-100 text-white px-2 px-sm-0">
<h1 class="display-3 brand"><?php echo the_title(); ?></h1>
<p class="lead"><?php echo the_excerpt(); ?></p>
</div>
</section>
<?php } ?>
<?php
get_footer();
?>
【问题讨论】:
-
默认情况下,短代码不会在
the_excerpt内执行。要么在那里输出完整内容,要么关注engagewp.com/insert-shortcodes-text-widgets-excerpts
标签: php wordpress wordpress-theming contact-form-7 custom-wordpress-pages