将WooCommerce产品连接到页面
我在WordPress网站上使用WooCommerce。我正在卖艺术品。产品是艺术。我有一个艺术家名单作为页面。每个艺术家都是一页。我想连接页面和产品,以便我可以在艺术页面上显示艺术家的名字,用户可以单击名称,然后将它们带到艺术家页面。我该怎么做
I am using woocommerce on my wordpress site. I am selling artwork. The products are arts. I have a list of artists as pages. Each artist is one page. I would like to connect the pages and products so I can show the artist's name on the art page and the user can click on the name and it takes them to the artist page. How do I do this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有多种方法可以做到这一点,但是我将向您展示一种自定义方法
通过在Active thempecon的functions.php
中添加以下代码来启用WooCommerce产品的作者Meta框。
add_action('init','ehi_add_author_woocommerce',999);
函数ehi_add_author_woocommerce()
{
if(post_type_exists('product'))
{
add_post_type_support('product','ofuter');
}
}
将作者分配给产品(WordPress的用户,WordPress的用户默认创建作者页面,您可以轻松使用作者页面)
在产品单页上添加自定义代码以显示作者信息
代码检查:
There are multiple ways to do this, But I will show you a custom way to do it
Enable the Author meta box for WooCommerce products by adding the below code in your active theme's functions.php
add_action('init', 'ehi_add_author_woocommerce', 999 );
function ehi_add_author_woocommerce()
{
if (post_type_exists('product'))
{
add_post_type_support('product', 'author');
}
}
Assign authors to products (User of WordPress, WordPress by default create author page it will easy for you to use author page)
On the product single page add custom code to show Author information
Code Exampl: