如何显示代码,如果是商店展示

时间:2019-05-02 12:18:47

标签: php wordpress

我正在尝试在页面检查后输出html代码

我尝试使用export interface FooInterface<T = string, O extends FooOptions<T> = FooOptions<T>> { items: T[]; options: O; } const t: FooInterface = { items: ["a", "b", "c"], options: { doSomething: (e) => { console.log(e); } } } 功能

is_page()

如果我在else部分中添加了回显,它将显示在所有类别页面中,包括SHOP页面,但是if不输出任何内容...

2 个答案:

答案 0 :(得分:0)

您可以使用titleslug来查看是否有区别:

<?php if (is_page( 'your-page-slug' )) : ?>
<div class="info_tour-categoria"><?php echo $product->get_categories(); ?></div>
<?php else: ?>
// your other code
<?php endif; ?>

答案 1 :(得分:0)

<?php if (is_page( 'shop' )) : ?>
<div class="info_tour-categoria"><?php echo $product->get_categories(); ?></div>
<?php else: ?>
// your other code
<?php endif; ?>

这是您所做更改的代码,这是商店页面中的结果

enter image description here