我必须在wordpress网站的某些特定页面中插入一些滑块。
https://www.mousampictures.com/department/wedding/
当我添加滑块代码时,它会一次出现。
if如何执行以下操作:
if (page is wedding){
echo wedding slider
}
if (page is portrait){
echo portrait slider
}
页面管理端url为:
https://www.mousampictures.com/wp-admin/term.php?taxonomy=department&tag_ID=38&post_type=portfolio
我尝试了以下方法:
<div class="layout-full">
<header class="entry-header">
<h1 class="entry-title"><?php single_cat_title(); ?></h1>
</header>
<!-- wedding --THIS DOSN\'T WORK :( -->
<?php
$title = single_cat_title();
if ( $title == "Wedding") {
echo do_shortcode(\'[metaslider id="1710"]\');
}
?>
<!--portrait -->
<?php echo do_shortcode(\'[metaslider id="1718"]\'); ?>
<!--travel -->
<?php echo do_shortcode(\'[metaslider id="1714"]\'); ?>
</div>
但如果条件不起作用,页面上会打印“婚礼”。