{"id":37241,"date":"2025-04-24T09:21:57","date_gmt":"2025-04-24T09:21:57","guid":{"rendered":"https:\/\/ithemelandco.com\/?p=37241"},"modified":"2025-10-16T10:09:19","modified_gmt":"2025-10-16T10:09:19","slug":"woocommerce-add-custom-payment-gateway","status":"publish","type":"post","link":"https:\/\/ithemelandco.com\/blog\/woocommerce-add-custom-payment-gateway\/","title":{"rendered":"Add custom payment gateway to WooCommerce"},"content":{"rendered":"\n<p>Want to take full control of your WooCommerce store\u2019s payments? Whether you need to integrate a local payment provider, a custom solution, or a third-party service not supported by default, add custom payment gateway to WooCommerce is the way to go!<\/p>\n\n\n\n<p>In this guide, we\u2019ll show you two powerful methods to add a custom payment gateway:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"#custom-payment-by-code\" data-type=\"internal\" data-id=\"#custom-payment-by-code\">Add custom payment gateway by coding (for developers who want full customization)<\/a><\/li>\n\n\n\n<li><a href=\"#custom-payment-by-plugin\" data-type=\"internal\" data-id=\"#custom-payment-by-plugin\">Add custom payment gateway using a third-party plugin (for a faster, no-code solution)<\/a><\/li>\n<\/ol>\n\n\n\n<p>By the end, you\u2019ll be able to process payments your way, improving flexibility and customer experience. Let\u2019s dive in!&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why Add a Custom Payment Gateway in WooCommerce?<\/h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/why-use-custom-payment-gateways-infographic.png\"><img fetchpriority=\"high\" decoding=\"async\" width=\"950\" height=\"1225\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/why-use-custom-payment-gateways-infographic.png\" alt=\"Why use custom payment gateways infographic\" class=\"wp-image-37276\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/why-use-custom-payment-gateways-infographic.png 950w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/why-use-custom-payment-gateways-infographic-500x645.png 500w\" sizes=\"(max-width: 950px) 100vw, 950px\" \/><\/a><\/figure>\n\n\n\n<p>WooCommerce supports popular payment methods like <a href=\"https:\/\/www.paypal.com\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">PayPal<\/a> and <a href=\"https:\/\/stripe.com\/en-at\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Stripe<\/a>, but sometimes you need more flexibility. Here\u2019s why a custom gateway can be essential:&nbsp;&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Local &amp; Regional Payment Support<\/strong>: Add banks, digital wallets, or cash-on-delivery options specific to your market.&nbsp;&nbsp;<\/li>\n\n\n\n<li><strong>Better Control<\/strong>: Customize the checkout flow, fees, or security measures to fit your business needs.&nbsp;&nbsp;<\/li>\n\n\n\n<li><strong>Reduce Costs<\/strong>: Avoid high transaction fees from third-party processors by integrating directly with a payment provider.&nbsp;&nbsp;<\/li>\n\n\n\n<li><strong>Unique Business Models<\/strong>: Support subscriptions, deposits, or custom payment terms not available in standard gateways.&nbsp;&nbsp;<\/li>\n\n\n\n<li><strong>Enhanced Security<\/strong>: Implement extra fraud checks or compliance steps for high-risk industries.&nbsp;&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>Whether you\u2019re a developer coding a solution or using a plugin, add custom payment gateway to WooCommerce helps boost conversions and streamline payments, tailored exactly for your store.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"custom-payment-by-code\">Method 1: Add Custom Payment Gateway with Code<\/h2>\n\n\n\n<p>Adding a custom payment gateway via code gives you full control over functionality, security, and integration. This method is ideal for developers who want a tailored solution without relying on third-party plugins.&nbsp;<\/p>\n\n\n\n<p>Before adding a custom payment gateway to WooCommerce by coding, take these essential precautions to avoid breaking your site, losing data, or disrupting live transactions.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Backup Your Site<\/strong>: Prevent data loss if something goes wrong.<\/li>\n\n\n\n<li><strong>Use a Staging Site<\/strong>: Test safely without affecting live customers.<\/li>\n\n\n\n<li><strong>Use a Child Theme<\/strong>: Avoid losing code on theme updates.<\/li>\n\n\n\n<li><strong>Test Thoroughly<\/strong>: Check payments, refunds, and errors before launch.<\/li>\n<\/ol>\n\n\n\n<p>By considering these points, you can follow the steps below to add a custom payment gateway to WooCommerce by coding:&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Create a Custom Gateway Class<\/h3>\n\n\n\n<p>In WooCommerce, payment gateways are implemented as&nbsp;PHP classes&nbsp;that extend the base&nbsp;<strong>WC_Payment_Gateway<\/strong><strong><em>&nbsp;<\/em><\/strong>class<strong>.<\/strong> This class handles all gateway-related logic, including settings, payment processing, and validation.<\/p>\n\n\n\n<p>To create the class in WooCommerce, you need to:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Create a new PHP file&nbsp;in <strong>your theme\u2019s&nbsp;\/wp-content\/themes\/your-theme\/WooCommerce\/&nbsp;<\/strong>directory or use a custom plugin like the <a href=\"https:\/\/wordpress.org\/plugins\/code-snippets\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">code snippet<\/a>.<\/li>\n\n\n\n<li>Define your class&nbsp;by extending&nbsp;<strong>WC_Payment_Gateway<\/strong>:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>if (!defined('ABSPATH')) exit; \/\/ Exit if accessed directly\nclass WC_Custom_Payment_Gateway extends WC_Payment_Gateway {\n&nbsp;&nbsp;&nbsp;&nbsp;\/\/ Gateway logic goes here\n}<\/code><\/pre>\n\n\n\n<ol start=\"3\" class=\"wp-block-list\">\n<li>Initialize properties&nbsp;in the constructor (ID, title, description, etc.).<\/li>\n<\/ol>\n\n\n\n<p>Creating a WooCommerce class helps you to establish the&nbsp;foundation&nbsp;of your payment gateway and ensure WooCommerce recognizes it as a valid payment method.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Define Core Methods (init_form_fields, process_payment, etc.)<\/h3>\n\n\n\n<p>A WooCommerce payment gateway requires several&nbsp;essential methods&nbsp;to function properly, including:&nbsp;<\/p>\n\n\n\n<p><strong>A.&nbsp;init_form_fields()&nbsp;\u2013 Configure Gateway Settings<\/strong><\/p>\n\n\n\n<p>This method defines the&nbsp;admin settings&nbsp;that appear in <strong>WooCommerce &gt; Payments<\/strong>.<\/p>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>public function init_form_fields() {\n&nbsp;&nbsp;&nbsp;&nbsp;$this-&gt;form_fields = array(\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'enabled' =&gt; array(\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'title' &nbsp; =&gt; 'Enable\/Disable',\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'type'&nbsp; &nbsp; =&gt; 'checkbox',\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'label' &nbsp; =&gt; 'Enable Custom Payment',\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'default' =&gt; 'yes'\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;),\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'title' =&gt; array(\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'title' &nbsp; &nbsp; &nbsp; =&gt; 'Title',\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'type'&nbsp; &nbsp; &nbsp; &nbsp; =&gt; 'text',\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'description' =&gt; 'Payment method title (shown at checkout).',\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'default' &nbsp; &nbsp; =&gt; 'Custom Payment',\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;),\n&nbsp;&nbsp;&nbsp;&nbsp;);\n}<\/code><\/pre>\n\n\n\n<p>By adding this code, merchants can&nbsp;configure&nbsp;the gateway (e.g., enable\/disable, set title, fees, etc.).<\/p>\n\n\n\n<p><strong>B.&nbsp;process_payment($order_id)&nbsp;\u2013 Handle Payment Processing<\/strong><\/p>\n\n\n\n<p>This is the&nbsp;most critical method, where you define what happens when a customer places an order.<\/p>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>public function process_payment($order_id) {\n&nbsp;&nbsp;&nbsp;&nbsp;$order = wc_get_order($order_id);\n&nbsp;&nbsp;&nbsp;&nbsp;\/\/ Mark as \"on-hold\" (or \"processing\" if payment is complete)\n&nbsp;&nbsp;&nbsp;&nbsp;$order-&gt;update_status('on-hold', __('Awaiting payment confirmation', 'WooCommerce'));\n&nbsp;&nbsp;&nbsp;&nbsp;\/\/ Reduce stock levels\n&nbsp;&nbsp;&nbsp;&nbsp;wc_reduce_stock_levels($order_id);\n&nbsp;&nbsp;&nbsp;&nbsp;\/\/ Empty cart\n&nbsp;&nbsp;&nbsp;&nbsp;WC()-&gt;cart-&gt;empty_cart();\n&nbsp;&nbsp;&nbsp;&nbsp;\/\/ Redirect to \"Thank You\" page\n&nbsp;&nbsp;&nbsp;&nbsp;return array(\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'result' &nbsp; =&gt; 'success',\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'redirect' =&gt; $this-&gt;get_return_url($order)\n&nbsp;&nbsp;&nbsp;&nbsp;);\n}<\/code><\/pre>\n\n\n\n<p>Add custom payment gateway WooCommerce by this code updates the&nbsp;order status&nbsp;(e.g., &#8220;processing,&#8221; &#8220;on-hold,&#8221; or &#8220;completed&#8221;), clears the cart&nbsp;after successful payment, and redirects&nbsp;the customer to the order confirmation page.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Other Useful Methods:<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Payment_fields()<\/strong>&nbsp;\u2013 Customize the checkout page HTML (e.g., show extra fields for bank transfers).<\/li>\n\n\n\n<li><strong>Validate_fields()<\/strong>&nbsp;\u2013 Add custom validation before processing payment.<\/li>\n\n\n\n<li><strong>Check_response()<\/strong>&nbsp;\u2013 Handle API callbacks (if using an external payment processor).<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Add the Gateway to WooCommerce<\/h3>\n\n\n\n<p>After defining your class, you need to&nbsp;register&nbsp;it with WooCommerce by following the steps below:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Use the&nbsp;<strong>WooCommerce_payment_gateways&nbsp;<\/strong>filter&nbsp;to add your gateway.<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>add_filter('WooCommerce_payment_gateways', 'add_custom_gateway');\nfunction add_custom_gateway($gateways) {\n&nbsp;&nbsp;&nbsp;&nbsp;$gateways&#091;] = 'WC_Custom_Payment_Gateway';\n&nbsp;&nbsp;&nbsp;&nbsp;return $gateways;\n}<\/code><\/pre>\n\n\n\n<ol start=\"2\" class=\"wp-block-list\">\n<li>Test the Gateway&nbsp;to ensure it appears in <strong>WooCommerce &gt; Settings &gt; Payments<\/strong> and works at checkout.<\/li>\n<\/ol>\n\n\n\n<p>If you have done all these steps successfully, you can make your gateway&nbsp;visible&nbsp;in WooCommerce\u2019s payment options and ensure seamless integration with the checkout process.<\/p>\n\n\n\n<p>However, suppose you have no experience in writing code. In that case, you should follow the instructions in the second method and get help from a third-party plugin to add a custom payment gateway to WooCommerce.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"custom-payment-by-plugin\">Method 2: Use&nbsp; a Third-party Plugin to add a Custom Payment Gateway to WooCommerce<\/h2>\n\n\n\n<p>If coding isn\u2019t your preference, specialized plugins offer a faster, no-code solution to integrate custom payment gateways in WooCommerce. Below is a detailed breakdown of the best plugins to add a custom payment gateway to WooCommerce.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Top Plugins to add custom payment gateway to WooCommerce<\/h3>\n\n\n\n<p>Instead of building a gateway from scratch, you can use&nbsp;powerful plugins&nbsp;to integrate custom payment methods&nbsp;without coding. These tools help you:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Accept regional payment options&nbsp;(bank transfers, mobile money, etc.)<\/li>\n\n\n\n<li>&nbsp;Set up subscriptions, deposits, or partial payments<\/li>\n\n\n\n<li>&nbsp;Reduce transaction fees&nbsp;with direct processor integrations<\/li>\n\n\n\n<li>&nbsp;Stay PCI-compliant&nbsp;while handling sensitive data<\/li>\n<\/ul>\n\n\n\n<p>In the following, we\u2019ll explore the&nbsp;best WooCommerce plugins&nbsp;to add custom payment gateway to WooCommerce.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">WooCommerce Payments (by Automattic) &nbsp;<\/h4>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/01-woo-payments-plugin.png\"><img decoding=\"async\" width=\"1001\" height=\"210\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/01-woo-payments-plugin.png\" alt=\"woocommerce payments plugin\" class=\"wp-image-37243\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/01-woo-payments-plugin.png 1001w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/01-woo-payments-plugin-500x105.png 500w\" sizes=\"(max-width: 1001px) 100vw, 1001px\" \/><\/a><\/figure>\n\n\n\n<p>As the official payment solution developed by WooCommerce itself, the <a href=\"https:\/\/woocommerce.com\/payments\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">WooCommerce payment<\/a> plugin provides a seamless and secure way to accept payments on your store. Designed specifically for WooCommerce users, it eliminates the need for third-party integrations while offering robust features and compliance.&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong>&nbsp;Best for:<\/strong> Credit\/Debit Cards, Local Payment Methods.&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong>&nbsp;Key Features:&nbsp;&nbsp;<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Built by WooCommerce (official, secure)&nbsp;&nbsp;<\/li>\n\n\n\n<li>Supports Apple Pay, Google Pay, SEPA, iDEAL, and more&nbsp;&nbsp;<\/li>\n\n\n\n<li>PCI-compliant with fraud protection&nbsp;&nbsp;<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><a href=\"https:\/\/wordpress.org\/plugins\/woocommerce-gateway-stripe\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Stripe for WooCommerce<\/a><\/h4>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/02-stripe-for-woo-plugin.png\"><img decoding=\"async\" width=\"963\" height=\"415\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/02-stripe-for-woo-plugin.png\" alt=\"Stripe for woocommerce plugin\" class=\"wp-image-37244\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/02-stripe-for-woo-plugin.png 963w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/02-stripe-for-woo-plugin-500x215.png 500w\" sizes=\"(max-width: 963px) 100vw, 963px\" \/><\/a><\/figure>\n\n\n\n<p>The <a href=\"https:\/\/wordpress.org\/plugins\/woocommerce-gateway-stripe\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">WooCommerce Stripe payment<\/a> plugin brings enterprise-grade payment processing to online stores of all sizes, with support for the latest payment technologies and global currencies.&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong>&nbsp;Best for:<\/strong> Global Payments (Cards, Wallets, BNPL)&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong>&nbsp;Key Features:&nbsp;&nbsp;<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Supports 135+ currencies&nbsp;&nbsp;<\/li>\n\n\n\n<li>One-click subscriptions &amp; saved cards&nbsp;&nbsp;<\/li>\n\n\n\n<li>Strong fraud detection (Radar)&nbsp;&nbsp;<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><a href=\"https:\/\/woocommerce.com\/products\/authorize-net\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Authorize.Net Gateway<\/a><\/h4>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"873\" height=\"592\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/03-woo-authorize-gateway-plugin.png\" alt=\"Woocommerce authorize gateway plugin\" class=\"wp-image-37245\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/03-woo-authorize-gateway-plugin.png 873w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/03-woo-authorize-gateway-plugin-500x339.png 500w\" sizes=\"(max-width: 873px) 100vw, 873px\" \/><\/figure>\n\n\n\n<p><a href=\"https:\/\/woocommerce.com\/products\/authorize-net\" target=\"_blank\" rel=\"noopener\"><\/a>&nbsp;A trusted payment solution for U.S. businesses, <a href=\"https:\/\/woocommerce.com\/products\/authorize-net\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Authorize.Net gateway<\/a> plugin offers reliable transaction processing with advanced security features tailored for various industries.&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong>&nbsp;Best for:<\/strong> US Businesses (ACH, eChecks, Cards)&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong>&nbsp;Key Features:&nbsp;&nbsp;<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Reliable for high-risk industries.&nbsp;&nbsp;<\/li>\n\n\n\n<li>Recurring billing support.&nbsp;&nbsp;<\/li>\n\n\n\n<li>Advanced Fraud Detection Suite (AFDS).&nbsp;&nbsp;<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><a href=\"https:\/\/wordpress.org\/plugins\/woocommerce-payments\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">WooPayments: Integrated WooCommerce Payments<\/a>&nbsp;<\/h4>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/04-woopayments.png\"><img loading=\"lazy\" decoding=\"async\" width=\"943\" height=\"430\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/04-woopayments.png\" alt=\"Woopayments plugin\" class=\"wp-image-37246\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/04-woopayments.png 943w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/04-woopayments-500x228.png 500w\" sizes=\"(max-width: 943px) 100vw, 943px\" \/><\/a><\/figure>\n\n\n\n<p>The <a href=\"https:\/\/wordpress.org\/plugins\/woocommerce-payments\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">WooPayments<\/a> plugin enables store owners to add custom payment gateway to WooCommerce without writing a single line of code, perfect for unique business requirements.&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong>&nbsp;Best for:<\/strong> Custom Gateways (Debit cards, allow customers to pay directly without leaving the WooCommerce store)&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong>&nbsp;Key Features:&nbsp;&nbsp;<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>No-code setup&nbsp;&nbsp;<\/li>\n\n\n\n<li>Accept major credit and debit cards<\/li>\n\n\n\n<li>See payments and track cash flow into your bank account<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">How to configure plugins to add custom payment gateway to WooCommerce effectively?<\/h3>\n\n\n\n<p>The configuration settings to add custom payment gateway to WooCommerce mostly depend on the plugin you have chosen. Meanwhile, the general steps that you need to follow are the same.&nbsp;<\/p>\n\n\n\n<p>Let\u2019s review them briefly:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">&nbsp;Step 1: Install &amp; Activate the Plugin&nbsp;&nbsp;<\/h3>\n\n\n\n<p>To begin, navigate to your WordPress dashboard and select <strong>Plugins &gt; Add New<\/strong>. In the search bar, type the name of your chosen payment gateway plugin (like &#8220;Stripe for WooCommerce&#8221;).<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/05-install-woo-stripe-plugin.png\"><img loading=\"lazy\" decoding=\"async\" width=\"758\" height=\"351\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/05-install-woo-stripe-plugin.png\" alt=\"installing stripe plugin on woocommerce\" class=\"wp-image-37247\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/05-install-woo-stripe-plugin.png 758w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/05-install-woo-stripe-plugin-500x232.png 500w\" sizes=\"(max-width: 758px) 100vw, 758px\" \/><\/a><\/figure>\n\n\n\n<p>&nbsp;Once located, click <strong>Install Now<\/strong> and then <strong>Activate<\/strong> to enable the plugin on your site.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/06-activate-woo-stripe-plugin.png\"><img loading=\"lazy\" decoding=\"async\" width=\"755\" height=\"343\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/06-activate-woo-stripe-plugin.png\" alt=\"Activating stripe plugin\" class=\"wp-image-37248\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/06-activate-woo-stripe-plugin.png 755w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/06-activate-woo-stripe-plugin-500x227.png 500w\" sizes=\"(max-width: 755px) 100vw, 755px\" \/><\/a><\/figure>\n\n\n\n<p>This process integrates the payment solution with your WooCommerce store, making it available for configuration.&nbsp;<\/p>\n\n\n\n<p>Some plugins may require additional setup wizards or prompts after activation &#8211; follow these if they appear, as they often help streamline the connection process with your payment processor.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">&nbsp;Step 2: Connect Your Payment Processor<\/h3>\n\n\n\n<p>After activation, go to <strong>WooCommerce &gt; Settings &gt; Payments<\/strong> in your WordPress admin panel. Here you&#8217;ll see a list of available payment methods &#8211; locate your newly installed gateway and click the <strong>Setup<\/strong> or <strong>Manage <\/strong>button.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/07-setup-payments-method.png\"><img loading=\"lazy\" decoding=\"async\" width=\"702\" height=\"239\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/07-setup-payments-method.png\" alt=\"Setup payments methods in stripe\" class=\"wp-image-37249\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/07-setup-payments-method.png 702w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/07-setup-payments-method-500x170.png 500w\" sizes=\"(max-width: 702px) 100vw, 702px\" \/><\/a><\/figure>\n\n\n\n<p>The most crucial step is entering your API keys (typically found in your payment processor&#8217;s dashboard, like Stripe or PayPal). These keys authenticate the connection between your store and the payment provider.&nbsp;<\/p>\n\n\n\n<p>Some gateways may also require additional details like merchant IDs or secret keys to add a custom payment gateway to WooCommerce.&nbsp;<\/p>\n\n\n\n<p>Be sure to select the correct payment environment (test\/sandbox mode for initial setup, production\/live mode when ready to go live).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">&nbsp;Step 3: Customize Checkout Settings&nbsp;&nbsp;<\/h3>\n\n\n\n<p>Within the gateway&#8217;s settings page, you can personalize how the payment method appears to customers.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/08-change-display-order-in-payments.png\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"404\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/08-change-display-order-in-payments.png\" alt=\"Changing display order of payments methods\" class=\"wp-image-37250\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/08-change-display-order-in-payments.png 768w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/08-change-display-order-in-payments-500x263.png 500w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/><\/a><\/figure>\n\n\n\n<p>Set a clear <strong>Title<\/strong> (e.g., &#8220;Credit Card Payment&#8221;) and <strong>Description<\/strong> that explains the option (e.g., &#8220;Pay securely with your Visa, Mastercard, or AMEX&#8221;).&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/09-add-title-and-desc-to-payment.png\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"527\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/09-add-title-and-desc-to-payment.png\" alt=\"Add title and description to payment\" class=\"wp-image-37251\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/09-add-title-and-desc-to-payment.png 768w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/09-add-title-and-desc-to-payment-500x343.png 500w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/><\/a><\/figure>\n\n\n\n<p>Most importantly, enable <strong>Test Mode<\/strong> at this stage to avoid processing real transactions during setup.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"704\" height=\"255\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/10-enable-test-mode.png\" alt=\"Enabling test mode in payment\" class=\"wp-image-37252\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/10-enable-test-mode.png 704w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/10-enable-test-mode-500x181.png 500w\" sizes=\"(max-width: 704px) 100vw, 704px\" \/><\/figure>\n\n\n\n<p>If your business model requires it, configure additional options to add custom payment gateway to WooCommerce, like:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Payment fees,&nbsp;<\/li>\n\n\n\n<li>Accepted card types,&nbsp;<\/li>\n\n\n\n<li>Or country-specific restrictions.&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>These settings ensure the payment method aligns perfectly with your store&#8217;s checkout flow and business requirements.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Test Transactions after adding new payment gateway<\/h3>\n\n\n\n<p>Before going live, thoroughly test the payment process by placing test orders while in sandbox mode. Use test credit card numbers (provided by your payment processor) to simulate successful payments, declines, and refunds.&nbsp;<\/p>\n\n\n\n<p>Verify that:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Orders receive the correct status (Processing\/Completed),&nbsp;<\/li>\n\n\n\n<li>Customers receive payment confirmation emails,&nbsp;<\/li>\n\n\n\n<li>And the system properly handles failed transactions.&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\/04\/11-test-transactions.png\"><img loading=\"lazy\" decoding=\"async\" width=\"704\" height=\"680\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/11-test-transactions.png\" alt=\"Testing transaction on payment\" class=\"wp-image-37253\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/11-test-transactions.png 704w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/11-test-transactions-500x483.png 500w\" sizes=\"(max-width: 704px) 100vw, 704px\" \/><\/a><\/figure>\n\n\n\n<p>This step is crucial for identifying any configuration issues that might prevent real customers from completing purchases. For subscription-based products, test recurring billing cycles to ensure they process correctly.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Go Live &amp; Monitor&nbsp;&nbsp;<\/h3>\n\n\n\n<p>Once testing is complete, return to the payment gateway settings and disable test mode to start accepting real payments. It&#8217;s wise to initially monitor all transactions closely by:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Checking <strong>WooCommerce &gt; Status &gt; Logs<\/strong> for errors,&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\/04\/12-checking-logs-error.png\"><img loading=\"lazy\" decoding=\"async\" width=\"995\" height=\"499\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/12-checking-logs-error.png\" alt=\"Checking the logs for errrors in payment\" class=\"wp-image-37254\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/12-checking-logs-error.png 995w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/12-checking-logs-error-500x251.png 500w\" sizes=\"(max-width: 995px) 100vw, 995px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Reviewing your payment processor&#8217;s dashboard for discrepancies,&nbsp;<\/li>\n\n\n\n<li>And enabling any available fraud protection filters.&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>Set up transaction alerts if available, and be prepared to troubleshoot any issues that arise during the initial live period.&nbsp;<\/p>\n\n\n\n<p>Regular monitoring ensures your payment gateway continues operating smoothly as your store grows and processes more orders.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Security Best Practices for Custom Gateways<\/h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/security-for-custom-payment-gateways-info-846x1024.png\"><img loading=\"lazy\" decoding=\"async\" width=\"846\" height=\"1050\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/security-for-custom-payment-gateways-info.png\" alt=\"Security best practices for custom payment gateways infographic\" class=\"wp-image-37261\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/security-for-custom-payment-gateways-info.png 846w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/security-for-custom-payment-gateways-info-500x621.png 500w\" sizes=\"(max-width: 846px) 100vw, 846px\" \/><\/a><\/figure>\n\n\n\n<p>When adding a custom payment gateway in WooCommerce, security should be your top priority to protect customer data and prevent fraud. Here are the key best practices:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Use HTTPS &amp; SSL<\/strong>: Ensure your entire site runs on SSL encryption to secure transactions.<\/li>\n\n\n\n<li><strong>Never Store Raw Card Data<\/strong>: Avoid PCI compliance risks by using tokenization (Stripe, PayPal) or redirecting to secure payment pages.<\/li>\n\n\n\n<li><strong>Validate &amp; Sanitize Inputs:<\/strong> Prevent SQL injection and XSS attacks by filtering all payment form inputs.<\/li>\n\n\n\n<li><strong>Enable Fraud Detection:<\/strong> Use built-in tools like Stripe Radar or Authorize.Net AFDS to block suspicious transactions.<\/li>\n\n\n\n<li><strong>Regular Security Audits<\/strong>: Monitor logs, update plugins, and test for vulnerabilities.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">How to track sales by payment gateway?<\/h2>\n\n\n\n<p>Tracking sales by payment gateway is essential for optimizing your store&#8217;s checkout performance and improving business decisions. By analyzing which payment methods customers prefer, you can identify trends, such as whether credit cards, digital wallets, or bank transfers generate more revenue.&nbsp;<\/p>\n\n\n\n<p>This data helps you promote the most popular options at checkout, potentially increasing conversion rates and reducing cart abandonment.&nbsp;<\/p>\n\n\n\n<p>Additionally, tracking payment gateway performance helps manage costs and detect issues.<\/p>\n\n\n\n<p>Different payment processors charge varying transaction fees\u2014some may be more expensive but convert better, while others might be cheaper but underutilized.&nbsp;<\/p>\n\n\n\n<p>By comparing revenue against processing fees, you can determine which gateways offer the best ROI.&nbsp;<\/p>\n\n\n\n<p>It also helps spot technical problems, like if a specific gateway has unusually high failure rates, allowing you to troubleshoot before losing more sales.&nbsp;<\/p>\n\n\n\n<p>For subscription-based businesses, monitoring sales reports by payment gateway is especially crucial for predicting cash flow.<\/p>\n\n\n\n<p>The <a href=\"https:\/\/ithemelandco.com\/plugins\/woocommerce-report\/?utm_source=blog&amp;utm_content=add-custom-payment-gateway\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>WooCommerce Reports plugin<\/strong><\/a> enhances your store\u2019s analytics by providing detailed, customizable reports on payment gateway performance. Unlike WooCommerce\u2019s basic reports, this plugin offers advanced filtering, visual dashboards, and export options, making it ideal for data-driven decision-making.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh7-rt.googleusercontent.com\/docsz\/AD_4nXeOadlvK2NreKbZibrIBhPKPdh7vhj0yGYRLkxqqNoNiBooQBjMyCXLrw7M2Y3y1qYGHeUWcOSWJeiVwuaoLcg8sYfgbeaEyjZsUQAQ1B2nTsE1np8kTU7rL-Gz5_FC1loNp6DydGSYj54YATiYy-w?key=Q4vOW4tihyWmQ7t7IaANnE6Q\" alt=\"\" \/><\/figure>\n\n\n\n<p><strong>Key Features:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Payment Gateway-Specific Reports:<\/strong> Compare sales across different payment methods (e.g., PayPal vs. Stripe) by month.<\/li>\n\n\n\n<li><strong>Custom Date Ranges:<\/strong> Use a built-in calendar to easily set the date range.<\/li>\n\n\n\n<li><strong>Export to CSV\/Excel\/PDF:<\/strong> Share reports with your accounting or marketing team.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p><strong>Read More: <\/strong>&nbsp;<a href=\"https:\/\/ithemelandco.com\/blog\/woocommerce-payment-methods-report\/\" target=\"_blank\" rel=\"noreferrer noopener\">2 ways to get WooCommerce report by payment method<\/a><\/p><\/blockquote><\/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-4a33225c 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-4f39da6d 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-0991dc6851cfc99e0f24c91f59e458e6\" style=\"font-size:26px;font-style:normal;font-weight:800\">REPORTiT &#8211; Advanced WooCommerce Reporting<\/p>\n\n\n\n<p class=\"single-cta-desc has-white-color has-text-color has-link-color wp-elements-5b8cdf151580475fd943a72c9241442d\" style=\"font-size:16px\">The easy way to track sales by payment gateways<\/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 main-cta-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https:\/\/ithemelandco.com\/plugins\/woocommerce-report\/?utm_source=blog&amp;utm_content=add-custom-payment-gateway\" 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\n\n\n<div class=\"wp-block-button is-style-outline is-style-outline--1\"><a class=\"wp-block-button__link has-white-background-color has-text-color has-background wp-element-button\" href=\"https:\/\/wordpress.org\/plugins\/ithemelandco-woo-report\/\" style=\"border-style:none;border-width:0px;border-radius:40px;color:#3d67ff;padding-top:10px;padding-right:30px;padding-bottom:10px;padding-left:30px;font-style:normal;font-weight:500\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Free Version<\/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\/reportit-banner.png\" alt=\"REPORTiT - Advanced WooCommerce Reporting plugin by ithemeland\" class=\"wp-image-48725\" style=\"width:440px;height:auto\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/reportit-banner.png 532w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/reportit-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>Adding a custom payment gateway to WooCommerce\u2014whether through custom coding or a plugin-based solution\u2014gives your store greater flexibility, improves customer experience, and can even reduce transaction costs. By following best practices in security, testing, and compliance, you ensure smooth transactions while protecting sensitive customer data.Whichever method you choose, tracking sales by payment method is crucial for optimizing conversions, reducing costs, and improving your store\u2019s financial performance. While WooCommerce provides basic reporting, the <a href=\"https:\/\/ithemelandco.com\/plugins\/woocommerce-report\/?utm_source=blog&amp;utm_content=add-custom-payment-gateway\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce reports plugin<\/a> helps you to better analyze the sales performance with advanced features like flexible filtering, visual dashboards, and exportable reports.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Want to take full control of your WooCommerce store\u2019s payments? Whether you need to integrate a local payment provider, a custom solution, or a third-party service not supported by default, add custom payment gateway to WooCommerce is the way to go! In this guide, we\u2019ll show you two powerful methods to add a custom payment [&hellip;]<\/p>\n","protected":false},"author":137,"featured_media":37256,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[50,73],"tags":[],"class_list":["post-37241","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\/04\/add-custom-payment-gateway-to-woocommerce-500x335.webp","excerpt_plain":"Want to take full control of your WooCommerce store\u2019s payments? Whether you need to integrate a local payment provider, a custom solution, or a third-party service not supported by default, add custom payment gateway to WooCommerce is the way to go! In this guide, we\u2019ll show you two powerful methods to add a custom payment [&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\/37241","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=37241"}],"version-history":[{"count":2,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/37241\/revisions"}],"predecessor-version":[{"id":48809,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/37241\/revisions\/48809"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/media\/37256"}],"wp:attachment":[{"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/media?parent=37241"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/categories?post=37241"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/tags?post=37241"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}