duanhunlou7051 2011-07-12 08:18
浏览 27
已采纳

如何从模板添加元标记?

I'm developing a website using WordPress as my Framework. The templates are highly customized and really doesn't use much of Wordpress's features. I just use it for registering users and publish a few articles here and there.

One of the templates is a product template. In this template I retrieve product information based on product ID sent in the URL.

What I want to do, is to take info from this product and add it to my <meta> tags.

According to Wordpress documentation, headers are loaded before templates.

So, how can I add meta tag information based on data loaded in my template?

Do I have to query the database "a second time" in the header in order to retrieve the data wanted?

I know Wordpress has some functionality for this, since article titles can be retrieved in the header file. But I'm not sure how I can take advantage of this.

  • 写回答

1条回答 默认 最新

  • du9826 2011-07-12 10:56
    关注

    Even though header is loaded before template, few global variable are available even before header is loaded and $post is one of them which hold post data + metadata.

    So you can access post meta in header as well.

    global $post;
    echo get_post_meta($post->ID, 'ur_meta_key', true);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?