在Woocommerce中获取产品名称

2022-08-30 16:48:01

我希望能够通过使用 PHP 通过产品 ID 回显产品名称来显示产品标题(这将显示在页面中,而不是产品页面本身)。我正在使用Wordpress,我有一个PHP插件,所以我可以使用PHP代码[php]echo 'example';[/php]

一个产品示例是;http://ukcctvinstallations.co.uk/product/1-camera-residential-system-hi-res/

当我编辑产品时,您可以在URL中看到“Post”= 129,所以我说这是产品ID是对的吗?

如果有人对此有解决方案,那将不胜感激。我正在使用WooCommerce。


答案 1

假设您将产品作为对象获取

$product = wc_get_product( id );

echo $product->get_title();

(国网版 2.5.2)


答案 2

找到解决方案:-

echo get_the_title( 'ID' );

看看这里: http://docs.woothemes.com/wc-apidocs/package-WooCommerce.Functions.Product.html


推荐