将WooCommerce产品连接到页面

发布于 2025-01-22 05:19:34 字数 130 浏览 0 评论 0原文

我在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁吢 2025-01-29 05:19:34

有多种方法可以做到这一点,但是我将向您展示一种自定义方法

  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');
    }
    }

  2. 将作者分配给产品(WordPress的用户,WordPress的用户默认创建作者页面,您可以轻松使用作者页面)

  3. 在产品单页上添加自定义代码以显示作者信息
    代码检查:

There are multiple ways to do this, But I will show you a custom way to do it

  1. 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');
    }
    }

  2. Assign authors to products (User of WordPress, WordPress by default create author page it will easy for you to use author page)

  3. On the product single page add custom code to show Author information
    Code Exampl:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文