更改Woocommerce产品标题

时间:2014-05-21 09:47:46

标签: wordpress woocommerce

如果

test.com/shop,title是产品| ABC

所以

test.com/shop/i_am_a_product,标题是我是产品| ABC

现在,我希望将此标题更改为我是产品| ABCDEF

怎么办?只需在标题中添加内容(将索引标题保留为ABC)。

对不起我的英文,有人可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

根据您的问题,我假设您要修改单个产品页面中的页面标题。要修改页面标题,请打开主题的header.php文件。

我假设当前的<title></title>标记如下 -

<title
    <?php wp_title( '|', true, 'right' ); ?>
    <?php bloginfo('name')?>
</title>

Woocommerce提供了一个功能is_product()来检查当前页面是否是单个产品页面。使用它如下 -

<title
    <?php wp_title( '|', true, 'right' ); ?>
    <?php
        if( is_product() ){
            // use your own code here, like ABCDEF
            // this part will only show up in a single product page
        }
        else{
            bloginfo('name'); // this is the name of your website.
            // use your code to display title in all other pages.
        }
</title>

希望这可能会有所帮助。

感谢。