{"id":36084,"date":"2025-03-03T07:56:08","date_gmt":"2025-03-03T07:56:08","guid":{"rendered":"https:\/\/ithemelandco.com\/?p=36084"},"modified":"2026-05-19T12:45:04","modified_gmt":"2026-05-19T12:45:04","slug":"woo-product-prices-by-user-roles","status":"publish","type":"post","link":"https:\/\/ithemelandco.com\/blog\/woo-product-prices-by-user-roles\/","title":{"rendered":"How to Set Product Prices by User Roles for WooCommerce"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Setting product prices by user roles for WooCommerce is one of the best ways to create personalized shopping experiences for wholesalers, VIP customers, members, and B2B buyers. Instead of showing the same price to every visitor, role-based pricing allows you to display different prices, discounts, or fixed product values depending on the customer\u2019s user role.In this guide, you\u2019ll learn two practical methods to create WooCommerce role based pricing: using custom PHP code or using the <a href=\"https:\/\/ithemelandco.com\/plugins\/role-based-pricing-for-woocommerce\/?utm_source=blog&amp;utm_content=price-by-user-role\">ROLEPRICEiT \u2013 Role Based Pricing for WooCommerce plugin<\/a>. Whether you want to apply wholesale discounts, user role pricing rules, or category-specific price adjustments, this tutorial will help you set up flexible pricing strategies that increase conversions and customer loyalty.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"set-price-by-user-role-with-code\">Method 1: Set product prices by user roles for WooCommerce programmatically<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To set product prices programmatically, you\u2019ll need to add custom PHP code to your WooCommerce store.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">When inserting custom code into the `<strong>functions.php<\/strong>` file of your WordPress theme, it\u2019s important to take certain precautions to avoid breaking your site or causing unexpected behavior. Here are the key precautions to consider:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Editing the `<strong>functions.php<\/strong>` file can potentially cause errors that break your site. Having a backup ensures you can restore your site to a working state if something goes wrong.<\/li>\n\n\n\n<li>If you\u2019re adding custom code to the `<strong>functions.php<\/strong>` file, it\u2019s best to do it in a <a href=\"https:\/\/developer.wordpress.org\/themes\/advanced-topics\/child-themes\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">child theme<\/a>. This ensures that your changes won\u2019t be overwritten when the parent theme is updated.<\/li>\n\n\n\n<li>If you have no experience in code writing or applying them to a child theme, it\u2019s better to ask an expert or use a third-party plugin like <a href=\"https:\/\/wordpress.org\/plugins\/code-snippets\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Code Snippet<\/a>.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">By taking these precautions into account, you can safely follow the below steps to add custom code and minimize the risk of errors or site downtime.&nbsp;<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Access your theme\u2019s functions.php file&nbsp;&nbsp;<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Go to <strong>WordPress dashboard &gt; Appearance &gt; Theme Editor.<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Then, select the <strong>`functions.php<\/strong>` file of your active theme.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Alternatively, you can use FTP or a file manager in your hosting control panel to edit the file.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Add custom code to set product prices by user roles for WooCommerce<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Insert the following code snippet into the `<strong>functions.php<\/strong>` file. This example demonstrates how to apply 10% discounts on prices for &#8220;wholesale_customer&#8221;.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>add_filter( 'WooCommerce_get_price', 'ts_custom_price', 10, 2 );\nfunction ts_custom_price( $price, $product ) {\n\/\/ Get the current user's role.\n$user_role = wp_get_current_user()-&gt;roles&#91;0];\n\/\/ Set different prices for different user roles.\nswitch ( $user_role ) {\ncase 'wholesaler':\n   $price = $price * 0.9; \/\/ Give wholesaler a 10% discount.\n   break;\ncase 'customer':\n   $price = $price; \/\/ Keep the regular price for customers.\n   break;\ndefault:\n   $price = $price; \/\/ Keep the regular price for other user roles.\n}\n\/\/ Return the new price.\nreturn $price;\n}<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Save Changes&nbsp;&nbsp;<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Save the `<strong>functions.php<\/strong>` file, and the new pricing rules will take effect immediately.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">By running this code, when customers log in to the website, they will see the regular prices,&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-01-products-regular-prices.png\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"556\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-01-products-regular-prices.png\" alt=\"Products regular price\" class=\"wp-image-36085\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-01-products-regular-prices.png 1024w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-01-products-regular-prices-500x271.png 500w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">Product price by user role<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">However, when a user logs in as a wholesaler, they can see the discounted product price.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-02-products-prices-for-wholesale-users.png\"><img decoding=\"async\" width=\"1024\" height=\"546\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-02-products-prices-for-wholesale-users.png\" alt=\"Products price for wholesaler using code\" class=\"wp-image-36086\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-02-products-prices-for-wholesale-users.png 1024w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-02-products-prices-for-wholesale-users-500x267.png 500w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">Product price for logged-in user<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Notes:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Replace \u201cwholesaler\u201d with the desired user role that you have already defined in WordPress (e.g., `&#8217;customer&#8217;`, `&#8217;subscriber&#8217;`, etc.).<\/li>\n\n\n\n<li>Set the value in $price = $price * 0.9 to offer the desired discount to the specified role.<\/li>\n\n\n\n<li>For all other user roles not specified in the&nbsp;code, the product price remains unchanged.<\/li>\n\n\n\n<li>This code only modifies the displayed price. It does not affect the cart or checkout calculations. To apply product prices by user roles for WooCommerce globally, you need to apply an extended code.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"role-based-pricing-plugin\">Method 2: Use role-based pricing for WooCommerce plugin<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you prefer a no-code solution, you can use the <a href=\"https:\/\/ithemelandco.com\/plugins\/role-based-pricing-for-woocommerce\/?utm_source=blog&amp;utm_content=price-by-user-role\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/ithemelandco.com\/plugins\/role-based-pricing-for-woocommerce\/?utm_source=blog&amp;utm_content=price-by-user-role\" rel=\"noreferrer noopener\">Role-Based Pricing for WooCommerce plugin<\/a> to set product prices by user roles for WooCommerce.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It is a powerful tool for simplifying the process of offering custom prices for specific user roles. You can define discounts or fixed prices for each role and increase or decrease prices based on your needs.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This plugin is highly customizable and let you apply advanced pricing rules on specific category or product. You can also define a date range to apply price by user role for specific product rules on your website.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here, you can find how to use this plugin to set product prices by user roles for WooCommerce in three simple steps:<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Step 1: Install and activate role-based pricing for WooCommerce plugin<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">As the first step, you need to download the <strong>ZIP<\/strong> file of role-based pricing for the WooCommerce plugin.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Then by navigating to <strong>Plugins &gt; Add New<\/strong> in your WordPress dashboard, and uploading the <strong>ZIP<\/strong> file, you can simply install it on your website.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-03-open-ithemeland-license-page.png\"><img decoding=\"async\" width=\"475\" height=\"372\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-03-open-ithemeland-license-page.png\" alt=\"Open ithemeland license page\" class=\"wp-image-36087\"\/><\/a><figcaption class=\"wp-element-caption\">Open license page<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">To activate the plugin, open the <strong>IThemeland<\/strong> tab that just appeared in your WordPress dashboard and choose a <strong>license<\/strong> to see the activation form.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Insert the <strong>license key<\/strong> in the form and click on the <strong>Activate<\/strong> button.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-04-activate-plugin-1024x403.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1123\" height=\"403\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-04-activate-plugin.png\" alt=\"Activate role-based pricing plugin\" class=\"wp-image-36088\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-04-activate-plugin.png 1123w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-04-activate-plugin-500x179.png 500w\" sizes=\"(max-width: 1123px) 100vw, 1123px\" \/><\/a><figcaption class=\"wp-element-caption\">Activate plugin<\/figcaption><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Step 2: Add user role to WordPress<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Before using the plugin, you need to create new roles in WordPress by getting help from a third-party plugin like <a href=\"https:\/\/wordpress.org\/plugins\/members\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Members<\/a>.&nbsp; Adding roles in WordPress using a plugin like Members is essential for fine-tuning user permissions and access control on your website.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">While WordPress comes with default users (e.g., Administrator, Editor, Author, Contributor, Subscriber), you may need to create roles to determine what those users can do. Properly managing roles ensures that users have the appropriate level of access, enhancing both functionality and security. Plugins like Members provide an intuitive way to create, edit, and assign custom roles with precise capabilities, ensuring users have the exact level of access they need.&nbsp;<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Step 3: Add a new rule to set product prices by user roles&nbsp;<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Once you have activated the plugin and added the required user roles, navigate to the plugin\u2019s main page under <strong>WordPress dashboard &gt; iThemeland &gt; Role Based Pricing<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-05-open-role-based-pricing-plugin.png\"><img loading=\"lazy\" decoding=\"async\" width=\"475\" height=\"355\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-05-open-role-based-pricing-plugin.png\" alt=\"Open role based pricing plugin\" class=\"wp-image-36089\"\/><\/a><figcaption class=\"wp-element-caption\">Open ROLEPRICEiT plugin<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">On the <strong>Rules<\/strong> page, press <strong>Add Rule<\/strong> to see the <strong>Rule<\/strong> form.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-06-add-rule-in-rulebased-pricing-plugin.png\"><img loading=\"lazy\" decoding=\"async\" width=\"875\" height=\"273\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-06-add-rule-in-rulebased-pricing-plugin.png\" alt=\"Add rule in woo role-based pricing\" class=\"wp-image-36090\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-06-add-rule-in-rulebased-pricing-plugin.png 875w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-06-add-rule-in-rulebased-pricing-plugin-500x156.png 500w\" sizes=\"(max-width: 875px) 100vw, 875px\" \/><\/a><figcaption class=\"wp-element-caption\">Add new rule<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Now, you can set product prices by user roles for WooCommerce by following the instructions below:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Add a <strong>Title<\/strong> like <strong>Rule 1.<\/strong><\/li>\n\n\n\n<li>Mark <strong>Apply on All products<\/strong> item.<\/li>\n\n\n\n<li>Under the <strong>User Role Based Pricing (By user roles)<\/strong> section, locate the specific user role you want to assign this rule to.<\/li>\n\n\n\n<li>Then choose the <strong>Adjustment type<\/strong> from the list.<\/li>\n\n\n\n<li>Insert a value in the <strong>Value<\/strong> field based on the changes you want to make to the prices.<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-07-set-rule-on-all-products-for-contributor-users.png\"><img loading=\"lazy\" decoding=\"async\" width=\"864\" height=\"658\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-07-set-rule-on-all-products-for-contributor-users.png\" alt=\"Set rule on all prodcuts for contributor users\" class=\"wp-image-36091\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-07-set-rule-on-all-products-for-contributor-users.png 864w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-07-set-rule-on-all-products-for-contributor-users-500x381.png 500w\" sizes=\"(max-width: 864px) 100vw, 864px\" \/><\/a><figcaption class=\"wp-element-caption\">Add product price per user role<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Finally, press the <strong>Add Rule<\/strong> button to apply changes on all products in your store for specific user roles.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-07-2-save-rule.png\"><img loading=\"lazy\" decoding=\"async\" width=\"854\" height=\"414\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-07-2-save-rule.png\" alt=\"Saving changes of rule\" class=\"wp-image-36102\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-07-2-save-rule.png 854w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-07-2-save-rule-500x242.png 500w\" sizes=\"(max-width: 854px) 100vw, 854px\" \/><\/a><figcaption class=\"wp-element-caption\">Add the rule<\/figcaption><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Step 4: Check output to ensure the price by user role for all products is working correctly&nbsp;<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Let\u2019s make an example and see how the result is displayed on the output.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Suppose that you want to show a fixed value (e.g. <strong>$100<\/strong>) for all product prices to <strong>customers<\/strong> and offer <strong>20% discount<\/strong> to <strong>shop manager<\/strong>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So, you need to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Locate the <strong>Customer<\/strong> role in the user role list.&nbsp;<\/li>\n\n\n\n<li>Select <strong>Fixed price<\/strong> from the list of <strong>Adjustment Type.<\/strong><\/li>\n\n\n\n<li>Write <strong>100<\/strong> in the <strong>Value<\/strong> field.<\/li>\n\n\n\n<li>Locate the <strong>Shop Manager <\/strong>role.&nbsp;<\/li>\n\n\n\n<li>Set the <strong>Adjustment type<\/strong> to <strong>Fixed Decrease.<\/strong>&nbsp;<\/li>\n\n\n\n<li>Insert <strong>20<\/strong> in the <strong>Value<\/strong> field.&nbsp;&nbsp;<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-08-set-pricing-rule-on-customer-and-shop-manager.png\"><img loading=\"lazy\" decoding=\"async\" width=\"674\" height=\"614\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-08-set-pricing-rule-on-customer-and-shop-manager.png\" alt=\"Pricing rule for customer and shop manager user roles\" class=\"wp-image-36093\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-08-set-pricing-rule-on-customer-and-shop-manager.png 674w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-08-set-pricing-rule-on-customer-and-shop-manager-500x455.png 500w\" sizes=\"(max-width: 674px) 100vw, 674px\" \/><\/a><figcaption class=\"wp-element-caption\">ROLEPRICEiT sample rule<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Save your settings by pressing the <strong>Add Rule<\/strong> button.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In this way, when users log in as a <strong>customer<\/strong> role, they can see the fixed price:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-10-result-for-customer-users.png\"><img loading=\"lazy\" decoding=\"async\" width=\"751\" height=\"487\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-10-result-for-customer-users.png\" alt=\"Result on customer users\" class=\"wp-image-36094\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-10-result-for-customer-users.png 751w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-10-result-for-customer-users-500x324.png 500w\" sizes=\"(max-width: 751px) 100vw, 751px\" \/><\/a><figcaption class=\"wp-element-caption\">Show fix price for customer users<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">However, when <strong>shop managers<\/strong> roles log in to your website, they can see the prices with $20 discounts.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-11-result-for-shop-manager-user-roles.png\"><img loading=\"lazy\" decoding=\"async\" width=\"682\" height=\"481\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-11-result-for-shop-manager-user-roles.png\" alt=\"Rule result on shop managers\" class=\"wp-image-36095\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-11-result-for-shop-manager-user-roles.png 682w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-11-result-for-shop-manager-user-roles-500x353.png 500w\" sizes=\"(max-width: 682px) 100vw, 682px\" \/><\/a><figcaption class=\"wp-element-caption\">Discounted price for shop managers<\/figcaption><\/figure>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center main-cta-cnt has-background is-layout-flex wp-container-core-columns-is-layout-8a83d729 wp-block-columns-is-layout-flex\" style=\"background-color:#3d67ff;padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-5980c20d wp-block-group-is-layout-constrained\" style=\"padding-top:15px\">\n<p class=\"single-cta-heading has-white-color has-text-color has-link-color wp-elements-d32793e947252763d15cb736470caf61 wp-block-paragraph\" style=\"font-size:23px;font-style:normal;font-weight:800\">ROLEPRICEiT &#8211; Role Based Pricing for WooCommerce<\/p>\n\n\n\n<p class=\"single-cta-desc has-white-color has-text-color has-link-color wp-elements-d8ead2c2cf376250d894c16163903a73 wp-block-paragraph\" style=\"font-size:16px\">The easy way to set product prices by user roles for WooCommerce<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https:\/\/ithemelandco.com\/plugins\/role-based-pricing-for-woocommerce\/?utm_source=blog&amp;utm_content=price-by-user-role\" style=\"border-style:none;border-width:0px;border-radius:40px;color:#ffffff;background-color:#0fba5e;padding-top:10px;padding-right:30px;padding-bottom:10px;padding-left:30px;font-style:normal;font-weight:500\" target=\"_blank\" rel=\"noreferrer noopener\">Buy Plugin<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"532\" height=\"355\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/rolebaseit-banner.png\" alt=\"ROLEPRICEiT - Role Based Pricing for WooCommerce plugin by ithemeland\" class=\"wp-image-48726\" style=\"width:440px;height:auto\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/rolebaseit-banner.png 532w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/rolebaseit-banner-500x335.png 500w\" sizes=\"(max-width: 532px) 100vw, 532px\" \/><\/figure>\n<\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Other features of role-based pricing for the WooCommerce plugin<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Role-based pricing for WooCommerce plugin has awesome features that allow store owners to offer personalized pricing to different user roles. This functionality is particularly useful for businesses that cater to diverse customer groups, such as wholesalers, members, or VIP customers.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Below, we\u2019ll explore some advanced features of role-based pricing, including category-specific pricing, product-specific pricing, variation-specific pricing, and flexible price adjustments.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Set price by user role for a specific category<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">With this plugin, you can set custom prices for entire product categories based on user roles. This is ideal for businesses that want to offer discounts or special pricing for specific product groups to certain user roles. For example, you can apply the above-mentioned rule to the <strong>Mobile<\/strong> category, only. This feature simplifies pricing management for large inventories and ensures consistent pricing across similar products.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-12-set-role-base-pricing-on-specific-category.png\"><img loading=\"lazy\" decoding=\"async\" width=\"672\" height=\"796\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-12-set-role-base-pricing-on-specific-category.png\" alt=\"role-base pricing on specific category\" class=\"wp-image-36096\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-12-set-role-base-pricing-on-specific-category.png 672w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-12-set-role-base-pricing-on-specific-category-500x592.png 500w\" sizes=\"(max-width: 672px) 100vw, 672px\" \/><\/a><figcaption class=\"wp-element-caption\">Set price for specific category<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Set price by user role for the specific products<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">For more granular control, Role Based Pricing for WooCommerce plugin, allows you to set custom prices for individual products based on user roles.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is perfect for offering exclusive deals or discounts on high-demand items. For instance, you can set a lower price for a specific product for member roles or a fixed price for a premium product for wholesale buyers.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This level of customization ensures that you can tailor pricing to meet the unique needs of different customers.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To make this happen, you just need to add as many products as you need to the <strong>Select Products<\/strong> fields:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-13-price-by-user-role-on-specific-products.png\"><img loading=\"lazy\" decoding=\"async\" width=\"679\" height=\"772\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-13-price-by-user-role-on-specific-products.png\" alt=\"specific products pricing by user role\" class=\"wp-image-36097\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-13-price-by-user-role-on-specific-products.png 679w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-13-price-by-user-role-on-specific-products-500x568.png 500w\" sizes=\"(max-width: 679px) 100vw, 679px\" \/><\/a><figcaption class=\"wp-element-caption\">Set price for specific products<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Set price by user role for specific product variation<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If your store offers variable products (e.g., different sizes, colors, or styles), the price by user role can be applied to specific product variations.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This feature allows you to set custom prices for each variation based on user roles.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, you can offer a discount on a specific color variant for members or a fixed price for a particular size for wholesale customers.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This ensures that pricing is flexible and tailored to the specific preferences of your customers.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To apply price rule on a specific variation, you need to open the variable product <strong>edit page<\/strong> and then open the <strong>Variations<\/strong> tab in the <strong>Product data<\/strong> section.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-14-set-price-by-user-role-on-specific-product-variations.png\"><img loading=\"lazy\" decoding=\"async\" width=\"909\" height=\"369\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-14-set-price-by-user-role-on-specific-product-variations.png\" alt=\"set role price on specific product variations\" class=\"wp-image-36098\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-14-set-price-by-user-role-on-specific-product-variations.png 909w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-14-set-price-by-user-role-on-specific-product-variations-500x203.png 500w\" sizes=\"(max-width: 909px) 100vw, 909px\" \/><\/a><figcaption class=\"wp-element-caption\">Product variations page<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Now click on the variations you want to apply the product prices rule to see the <strong>Edit Variation<\/strong> form.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Scroll down this form to find the <strong>Role Based Pricing<\/strong> section.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, you can set your rule in this form as we explained before:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-15-set-price-by-user-role-on-variation-product-1024x1024.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1114\" height=\"1562\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-15-set-price-by-user-role-on-variation-product.png\" alt=\"setting the rule for on specific variation\" class=\"wp-image-36099\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-15-set-price-by-user-role-on-variation-product.png 1114w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-15-set-price-by-user-role-on-variation-product-500x701.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-15-set-price-by-user-role-on-variation-product-1095x1536.png 1095w\" sizes=\"(max-width: 1114px) 100vw, 1114px\" \/><\/a><figcaption class=\"wp-element-caption\">Role based pricing for each variation products<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Flexible adjustments types<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">WooCommerce role-based pricing plugin also supports flexible price adjustments, giving you complete control over how prices are modified for different user roles.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-16-role-based-plugin-adjustment-types.png\"><img loading=\"lazy\" decoding=\"async\" width=\"426\" height=\"626\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-16-role-based-plugin-adjustment-types.png\" alt=\"Adjustment types in role-based pricing plugin\" class=\"wp-image-36100\"\/><\/a><figcaption class=\"wp-element-caption\">Flexible adjustment types<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">You can choose one of the below options:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Fixed price<\/strong>: To show a new price to the specified user role.<\/li>\n\n\n\n<li><strong>Fixed Increase<\/strong>: To increase the current price by a fixed amount.&nbsp;<\/li>\n\n\n\n<li><strong>Fixed decrease<\/strong>: To decrease the current price by a fixed amount.<\/li>\n\n\n\n<li><strong>Percentage decrease<\/strong>: To increase the current price by a percentage.<\/li>\n\n\n\n<li><strong>Percentage increase<\/strong>: To decrease the current price by a percentage.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">For example, you can increase prices by 5% for retail customers, decrease prices by 10% for wholesale buyers, or set a fixed price of $50 for VIP members.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This flexibility ensures that you can create pricing strategies that align with your business goals and customer expectations.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why do you need product prices by user roles for WooCommerce?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Offering personalized product prices based on user roles is a strategic approach that can significantly benefit your WooCommerce store. This feature allows you to tailor pricing to different customer groups, enhancing customer satisfaction, driving sales, and improving loyalty. Here are some key reasons why you might need product prices by user roles for WooCommerce:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Cater to diverse customer groups<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Different customer groups, such as wholesalers, retailers, members, or VIP customers, have unique pricing needs.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">By setting product prices by user roles for WooCommerce, you can offer tailored pricing that aligns with the expectations and purchasing power of each group. For example, wholesalers may require bulk discounts, while VIP customers might appreciate exclusive deals.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Boost sales and revenue<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Personalized pricing encourages customers to make purchases by offering them deals that feel exclusive and relevant. For instance, offering a discount to members or specific buyers can incentivize them to complete their purchase, ultimately boosting your sales and revenue.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Improve customer loyalty<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">By offering product prices by user roles to loyal customers or members, you can strengthen your relationship with them. Role-based pricing makes customers feel valued, increasing the likelihood of repeat purchases and long-term loyalty.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Simplify pricing management<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a large inventory or cater to multiple customer groups, managing individual prices for each product can be time-consuming. Product prices by user roles allow you to set pricing rules for entire user roles, simplifying the process and ensuring consistency across your store.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Compete Effectively in the Market<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In competitive markets, offering personalized pricing can give you an edge over competitors. By providing discounts or special pricing to specific user roles, you can attract more customers and stand out in a crowded marketplace.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Support wholesale and B2B sales<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If your store caters to wholesale or B2B customers, role-based pricing is essential. Wholesale buyers often expect lower prices for bulk purchases, and role-based pricing allows you to meet these expectations without affecting retail prices.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhance marketing strategies<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Role-based pricing can be integrated into your marketing campaigns to target specific customer groups. For example, you can offer limited-time discounts to subscribers or exclusive deals to members, driving engagement and conversions.<\/p>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center main-cta-cnt has-background is-layout-flex wp-container-core-columns-is-layout-8a83d729 wp-block-columns-is-layout-flex\" style=\"background-color:#3d67ff;padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-5980c20d wp-block-group-is-layout-constrained\" style=\"padding-top:15px\">\n<p class=\"single-cta-heading has-white-color has-text-color has-link-color wp-elements-d32793e947252763d15cb736470caf61 wp-block-paragraph\" style=\"font-size:23px;font-style:normal;font-weight:800\">ROLEPRICEiT &#8211; Role Based Pricing for WooCommerce<\/p>\n\n\n\n<p class=\"single-cta-desc has-white-color has-text-color has-link-color wp-elements-d8ead2c2cf376250d894c16163903a73 wp-block-paragraph\" style=\"font-size:16px\">The easy way to set product prices by user roles for WooCommerce<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https:\/\/ithemelandco.com\/plugins\/role-based-pricing-for-woocommerce\/?utm_source=blog&amp;utm_content=price-by-user-role\" style=\"border-style:none;border-width:0px;border-radius:40px;color:#ffffff;background-color:#0fba5e;padding-top:10px;padding-right:30px;padding-bottom:10px;padding-left:30px;font-style:normal;font-weight:500\" target=\"_blank\" rel=\"noreferrer noopener\">Buy Plugin<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"532\" height=\"355\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/rolebaseit-banner.png\" alt=\"ROLEPRICEiT - Role Based Pricing for WooCommerce plugin by ithemeland\" class=\"wp-image-48726\" style=\"width:440px;height:auto\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/rolebaseit-banner.png 532w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/rolebaseit-banner-500x335.png 500w\" sizes=\"(max-width: 532px) 100vw, 532px\" \/><\/figure>\n<\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">WooCommerce role based pricing gives store owners the flexibility to create personalized pricing strategies for different customer groups without affecting the shopping experience for regular users. From wholesale discounts and member pricing to VIP offers and category-specific rules, user role pricing can help improve customer retention, increase sales, and support advanced B2B workflows.While custom coding can work for simple role-based discounts, using the <a href=\"https:\/\/ithemelandco.com\/plugins\/role-based-pricing-for-woocommerce\/?utm_source=blog&amp;utm_content=price-by-user-role\">ROLEPRICEiT \u2013 Role Based Pricing for WooCommerce plugin<\/a> makes it much easier to manage advanced pricing conditions, variation pricing, fixed discounts, and WooCommerce user role pricing rules from a visual interface. With the right setup, you can create a more targeted and profitable pricing system for your WooCommerce store.<\/p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-7387b849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column blog-faq-section is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">FAQ<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">What is WooCommerce role-based pricing?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">WooCommerce role-based pricing is a pricing strategy that allows store owners to show different product prices or discounts based on customer user roles, such as wholesalers, members, subscribers, or VIP customers.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">How do I set WooCommerce prices by user role?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">You can set WooCommerce prices by user role either by adding custom PHP code to your site or by using a plugin like ROLEPRICEiT.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Can I offer wholesale prices in WooCommerce?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Yes. WooCommerce role pricing plugins allow you to create wholesale pricing rules for specific user roles and apply percentage discounts, fixed prices, or custom pricing conditions.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Does WooCommerce support user role discounts by default?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">No. WooCommerce does not include built-in user role pricing features. You need custom code or a dedicated role-based pricing plugin to create WooCommerce user role discounts.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Can I apply role-based pricing to specific products?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Yes. Advanced WooCommerce role pricing plugins allow you to apply pricing rules to individual products, categories, or even specific product variations.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">What types of pricing adjustments can be applied by user role?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">You can apply fixed prices, percentage discounts, fixed decreases, fixed increases, percentage increases, or custom WooCommerce role-based discounts depending on your pricing strategy.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Can WooCommerce role-based pricing work for variable products?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Yes. Many WooCommerce role-based pricing plugins support variation-level pricing, allowing you to assign different prices to specific product sizes, colors, or attributes.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">What is the best WooCommerce role-based pricing plugin?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">ROLEPRICEiT plugin is a robust solution for creating WooCommerce user role pricing, wholesale discounts, category pricing, and advanced role-based pricing rules without coding.<\/p>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Setting product prices by user roles for WooCommerce is one of the best ways to create personalized shopping experiences for wholesalers, VIP customers, members, and B2B buyers. Instead of showing the same price to every visitor, role-based pricing allows you to display different prices, discounts, or fixed product values depending on the customer\u2019s user role.In [&hellip;]<\/p>\n","protected":false},"author":137,"featured_media":36101,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[50,73],"tags":[],"class_list":["post-36084","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-woocommerce"],"featured_image_url":"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/03\/134-set-product-price-by-user-role-500x335.webp","excerpt_plain":"Setting product prices by user roles for WooCommerce is one of the best ways to create personalized shopping experiences for wholesalers, VIP customers, members, and B2B buyers. Instead of showing the same price to every visitor, role-based pricing allows you to display different prices, discounts, or fixed product values depending on the customer\u2019s user role.In [&hellip;]","_embedded":{"wp:term":[[{"term_id":50,"name":"Tutorials","slug":"tutorials","term_group":0,"term_taxonomy_id":50,"taxonomy":"category","description":"Follow and learn the latest educational articles about WordPress plugins and WooCommerce here","parent":0,"count":256,"filter":"raw"},{"term_id":73,"name":"WooCommerce","slug":"woocommerce","term_group":0,"term_taxonomy_id":73,"taxonomy":"category","description":"Do you use WooCommerce to manage your online store? We suggest you read this category of WooCommerce articles.","parent":50,"count":205,"filter":"raw"}]]},"_links":{"self":[{"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/36084","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/users\/137"}],"replies":[{"embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/comments?post=36084"}],"version-history":[{"count":4,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/36084\/revisions"}],"predecessor-version":[{"id":51093,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/36084\/revisions\/51093"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/media\/36101"}],"wp:attachment":[{"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/media?parent=36084"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/categories?post=36084"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/tags?post=36084"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}