{"id":12918,"date":"2026-04-17T05:28:15","date_gmt":"2026-04-17T05:28:15","guid":{"rendered":"https:\/\/www.woohelpdesk.com\/blog\/?p=12918"},"modified":"2026-04-17T05:30:48","modified_gmt":"2026-04-17T05:30:48","slug":"how-to-add-wysiwyg-editor-to-wordpress-meta-box","status":"publish","type":"post","link":"https:\/\/www.woohelpdesk.com\/blog\/how-to-add-wysiwyg-editor-to-wordpress-meta-box\/","title":{"rendered":"How to Add a WYSIWYG Editor to a WordPress Meta Box: Is It Free and Does WordPress Already Have One?"},"content":{"rendered":"<h2>Table of Contents<\/h2>\n<ul>\n<li><a href=\"#section-1\">Introduction<\/a><\/li>\n<li><a href=\"#section-2\">What Is a WYSIWYG Editor in WordPress?<\/a><\/li>\n<li><a href=\"#section-3\">Does WordPress Have a WYSIWYG Editor?<\/a><\/li>\n<li><a href=\"#section-4\">Is a WYSIWYG Editor Free?<\/a><\/li>\n<li><a href=\"#section-5\">What Is a Meta Box in WordPress?<\/a><\/li>\n<li><a href=\"#section-6\">Why Add a WYSIWYG Editor to a Meta Box?<\/a><\/li>\n<li><a href=\"#section-7\">Can You Add a WYSIWYG Editor to a WordPress Meta Box?<\/a><\/li>\n<li><a href=\"#section-8\">The Legacy Method: Add a WYSIWYG Editor to a Meta Box<\/a><\/li>\n<li><a href=\"#section-9\">Important Limitation You Should Know<\/a><\/li>\n<li><a href=\"#section-10\">The Better Modern Option<\/a><\/li>\n<li><a href=\"#section-11\">When Should You Still Use a WYSIWYG Meta Box?<\/a><\/li>\n<li><a href=\"#section-12\">When Should You Avoid It?<\/a><\/li>\n<li><a href=\"#section-13\">Common Problems<\/a><\/li>\n<li><a href=\"#section-14\">Final Answer<\/a><\/li>\n<li><a href=\"#section-15\">FAQs<\/a><\/li>\n<\/ul>\n<h2 id=\"section-1\">Introduction<\/h2>\n<p>If you work with custom fields in WordPress, you may want more than a plain text box. Sometimes you need bold text, links, lists, or simple formatting inside a meta box. That is where a WYSIWYG editor becomes useful. The good news is that WordPress already includes a built-in visual editing system, and the default editing experience in modern WordPress is the Block Editor. The important catch is that adding the classic wp_editor() rich text editor directly inside a meta box is still possible, but WordPress developer guidance treats it as a legacy approach and recommends newer block-based methods for many modern projects.<\/p>\n<h2 id=\"section-2\">What Is a WYSIWYG Editor in WordPress?<\/h2>\n<p>WYSIWYG means <strong>\u201cWhat You See Is What You Get.\u201d<\/strong> In simple words, it is a visual editor that lets you format content without writing raw HTML. You can click buttons for bold text, italic text, lists, links, and headings, and the content appears close to how it will look on the front end.<\/p>\n<p>In WordPress, users often think of the old classic visual editor when they hear \u201cWYSIWYG editor.\u201d Today, WordPress mainly uses the Block Editor, which is also a visual editing system, but it works with blocks instead of one large text area. WordPress describes the Block Editor as the default way to create and format content visually.<\/p>\n<h2 id=\"section-3\">Does WordPress Have a WYSIWYG Editor?<\/h2>\n<p>Yes, WordPress already has a built-in visual editor. On modern WordPress sites, that editor is the <strong>Block Editor<\/strong>. It opens by default when you add or edit posts and pages, and it gives you a visual way to insert, move, and style content.<\/p>\n<p>WordPress also still includes the wp_editor() function, which renders the classic rich text editor tools such as TinyMCE and Quicktags. That means WordPress has both a modern visual editing experience for core content and legacy editor tools developers can still call in custom admin areas.<\/p>\n<p>So the short answer is:<\/p>\n<ul>\n<li><strong>Yes, WordPress has a WYSIWYG editor<\/strong><\/li>\n<li><strong>Yes, it is free in WordPress core<\/strong><\/li>\n<li><strong>Yes, you can add one to a meta box<\/strong><\/li>\n<li>But for new projects, WordPress often points developers toward <strong>blocks or post-meta-based block solutions<\/strong> instead of older PHP meta box patterns.<\/li>\n<\/ul>\n<h2 id=\"section-4\">Is a WYSIWYG Editor Free?<\/h2>\n<p>Yes. If you are using WordPress, the built-in editing experience is already included. You do not need to pay extra just to get basic visual editing. The Block Editor is part of WordPress itself, and wp_editor() is also part of WordPress core.<\/p>\n<p>Extra cost only appears when you choose premium plugins, page builders, advanced custom field systems, or custom development. So if your question is, \u201cDo I need a paid tool just to use a WYSIWYG editor in WordPress?\u201d the answer is no.<\/p>\n<h2 id=\"section-5\">What Is a Meta Box in WordPress?<\/h2>\n<p>A meta box is an extra panel shown on the post editing screen. Developers use meta boxes to collect additional data such as:<\/p>\n<ul>\n<li>Extra descriptions<\/li>\n<li>Author notes<\/li>\n<li>Subtitle content<\/li>\n<li>Product details<\/li>\n<li>Sidebar text<\/li>\n<li>FAQ content<\/li>\n<\/ul>\n<p>WordPress developer documentation describes custom meta boxes as flexible edit screen elements used to collect information related to the post being edited.<\/p>\n<h2 id=\"section-6\">Why Add a WYSIWYG Editor to a Meta Box?<\/h2>\n<p>A plain text field is enough for short values like a subtitle or a code. But some custom fields need formatting. For example:<\/p>\n<ul>\n<li>A custom intro section<\/li>\n<li>A short promo message<\/li>\n<li>An author bio<\/li>\n<li>A sidebar content block<\/li>\n<li>A custom footer note on selected posts<\/li>\n<\/ul>\n<p>In these cases, a WYSIWYG editor makes the field easier for non-technical users. They can style content without touching HTML.<\/p>\n<h2 id=\"section-7\">Can You Add a WYSIWYG Editor to a WordPress Meta Box?<\/h2>\n<p>Yes, you can. The traditional way is to use the wp_editor() function inside your meta box callback. That will render a rich text editor in the meta box.<\/p>\n<p>However, WordPress also gives an important warning: once TinyMCE is initialized, it cannot be safely moved in the DOM, so running wp_editor() inside a meta box is \u201cnot a good idea\u201d unless only Quicktags is used. WordPress also encourages developers to port older meta box solutions to newer block-based methods for a more consistent editor experience.<\/p>\n<p>That means this approach is still useful for <strong>legacy projects<\/strong> and <strong>specific admin workflows<\/strong>, but it is not the strongest long-term choice for every new build.<\/p>\n<h2 id=\"section-8\">The Legacy Method: Add a WYSIWYG Editor to a Meta Box<\/h2>\n<p>Below is a basic example of how developers usually add a rich text editor to a custom meta box.<\/p>\n<h3>1. Register the Meta Box<\/h3>\n<p>add_action( &#8216;add_meta_boxes&#8217;, &#8216;my_register_custom_editor_metabox&#8217; );<\/p>\n<p>&nbsp;<\/p>\n<p>function my_register_custom_editor_metabox() {<\/p>\n<p>add_meta_box(<\/p>\n<p>&#8216;my_custom_editor_box&#8217;,<\/p>\n<p>&#8216;Custom Editor Content&#8217;,<\/p>\n<p>&#8216;my_render_custom_editor_metabox&#8217;,<\/p>\n<p>&#8216;post&#8217;,<\/p>\n<p>&#8216;normal&#8217;,<\/p>\n<p>&#8216;high&#8217;<\/p>\n<p>);<\/p>\n<p>}<\/p>\n<h3>2. Display the WYSIWYG Editor<\/h3>\n<p>function my_render_custom_editor_metabox( $post ) {<\/p>\n<p>wp_nonce_field( &#8216;my_custom_editor_nonce_action&#8217;, &#8216;my_custom_editor_nonce&#8217; );<\/p>\n<p>$saved_content = get_post_meta( $post-&gt;ID, &#8216;_my_custom_editor_content&#8217;, true );<\/p>\n<p>wp_editor(<\/p>\n<p>$saved_content,<\/p>\n<p>&#8216;my_custom_editor&#8217;,<\/p>\n<p>array(<\/p>\n<p>&#8216;textarea_name&#8217; =&gt; &#8216;my_custom_editor&#8217;,<\/p>\n<p>&#8216;media_buttons&#8217; =&gt; false,<\/p>\n<p>&#8216;textarea_rows&#8217; =&gt; 8,<\/p>\n<p>&#8216;teeny&#8217; \u00a0 \u00a0 =&gt; false,<\/p>\n<p>&#8216;quicktags&#8217; \u00a0\u00a0\u00a0\u00a0\u00a0 =&gt; true,<\/p>\n<p>)<\/p>\n<p>);<\/p>\n<p>}<\/p>\n<p>The wp_editor() function is the proper WordPress function for outputting the editor and its required components. WordPress notes that the $editor_id should not contain square brackets, and settings such as textarea_name, media_buttons, and other editor options can be passed in the settings array.<\/p>\n<h3>3. Save the Meta Box Content<\/h3>\n<p>add_action( &#8216;save_post&#8217;, &#8216;my_save_custom_editor_metabox&#8217; );<\/p>\n<p>function my_save_custom_editor_metabox( $post_id ) {<\/p>\n<p>if ( ! isset( $_POST[&#8216;my_custom_editor_nonce&#8217;] ) ) {<\/p>\n<p>return;<\/p>\n<p>}<\/p>\n<p>if ( ! wp_verify_nonce( $_POST[&#8216;my_custom_editor_nonce&#8217;], &#8216;my_custom_editor_nonce_action&#8217; ) ) {<\/p>\n<p>return;<\/p>\n<p>}<\/p>\n<p>if ( defined( &#8216;DOING_AUTOSAVE&#8217; ) &amp;&amp; DOING_AUTOSAVE ) {<\/p>\n<p>return;<\/p>\n<p>}<\/p>\n<p>if ( ! current_user_can( &#8216;edit_post&#8217;, $post_id ) ) {<\/p>\n<p>return;<\/p>\n<p>}<\/p>\n<p>if ( isset( $_POST[&#8216;my_custom_editor&#8217;] ) ) {<\/p>\n<p>update_post_meta(<\/p>\n<p>$post_id,<\/p>\n<p>&#8216;_my_custom_editor_content&#8217;,<\/p>\n<p>wp_kses_post( $_POST[&#8216;my_custom_editor&#8217;] )<\/p>\n<p>);<\/p>\n<p>}<\/p>\n<p>}<\/p>\n<h3>4. Show the Saved Content on the Front End<\/h3>\n<p>$content = get_post_meta( get_the_ID(), &#8216;_my_custom_editor_content&#8217;, true );<\/p>\n<p>if ( ! empty( $content ) ) {<\/p>\n<p>echo wpautop( wp_kses_post( $content ) );<\/p>\n<p>}<\/p>\n<p>This is the common pattern: register the box, render the editor, save the value, then display it in your template.<\/p>\n<h2 id=\"section-9\">Important Limitation You Should Know<\/h2>\n<p>Even though the code above works in many setups, WordPress clearly warns that TinyMCE inside meta boxes is not ideal because the editor cannot be safely moved after initialization. That matters because the Block Editor is a JavaScript application and older PHP meta boxes are handled in a compatibility layer. WordPress says most PHP meta boxes still work, but some advanced ones may break, especially when they depend on old editor selectors, TinyMCE APIs, or DOM behavior from the classic editor.<\/p>\n<p>So if you are building something new, do not assume the legacy meta box method is your best path.<\/p>\n<h2 id=\"section-10\">The Better Modern Option<\/h2>\n<p>For modern WordPress development, the preferred direction is often:<\/p>\n<ul>\n<li>Register post meta with register_post_meta()<\/li>\n<li>Expose it with show_in_rest =&gt; true<\/li>\n<li>Create a custom block or editor UI that reads and saves that meta value<\/li>\n<\/ul>\n<p>WordPress\u2019s Block Editor handbook specifically recommends porting older custom meta boxes to newer methods and provides a guide for creating a custom block that stores post meta. It also notes that the block editor uses the REST API to load and save meta data, which is why show_in_rest matters.<\/p>\n<p>A simplified registration example looks like this:<\/p>\n<p>add_action( &#8216;init&#8217;, &#8216;my_register_post_meta_field&#8217; );<\/p>\n<p>function my_register_post_meta_field() {<\/p>\n<p>register_post_meta(<\/p>\n<p>&#8216;post&#8217;,<\/p>\n<p>&#8216;my_custom_meta_field&#8217;,<\/p>\n<p>array(<\/p>\n<p>&#8216;show_in_rest&#8217; =&gt; true,<\/p>\n<p>&#8216;single&#8217; true,<\/p>\n<p>&#8216;type&#8217; &#8216;string&#8217;,<\/p>\n<p>)<\/p>\n<p>);<\/p>\n<p>}<\/p>\n<p>From there, a custom block or sidebar control can edit that value in a way that fits modern WordPress much better.<\/p>\n<h2 id=\"section-11\">When Should You Still Use a WYSIWYG Meta Box?<\/h2>\n<p>Using wp_editor() in a meta box can still make sense when:<\/p>\n<ul>\n<li>You are maintaining an older custom plugin or theme<\/li>\n<li>The project already depends on classic meta boxes<\/li>\n<li>The site editing workflow is stable and tested<\/li>\n<li>The field is simple and used only by admins<\/li>\n<li>You understand the compatibility risks<\/li>\n<\/ul>\n<p>It is often acceptable for controlled internal projects. It is just not the most future-friendly option for new block-first builds.<\/p>\n<h2 id=\"section-12\">When Should You Avoid It?<\/h2>\n<p>Avoid this method when:<\/p>\n<ul>\n<li>You are starting a fresh plugin or product<\/li>\n<li>The site is heavily block-editor based<\/li>\n<li>You need strong long-term compatibility<\/li>\n<li>You want a cleaner modern editing experience<\/li>\n<li>Your field structure fits blocks or sidebar panels better<\/li>\n<\/ul>\n<p>In these situations, a block or sidebar-based post meta solution is usually the better choice. WordPress explicitly encourages this direction.<\/p>\n<h2 id=\"section-13\">Common Problems<\/h2>\n<p><strong>Editor does not load<\/strong><\/p>\n<p>This is often caused by loading the editor on the wrong screen, missing hooks, or JavaScript conflicts.<\/p>\n<p><strong>Content does not save<\/strong><\/p>\n<p>Usually the issue is a missing nonce, autosave interference, permission checks, or a wrong field name.<\/p>\n<p><strong>Editor works in Classic Editor but feels unstable in Block Editor<\/strong><\/p>\n<p>That fits WordPress\u2019s own warning. Legacy meta boxes can work, but complex ones may not behave well in the block editor compatibility layer.<\/p>\n<h2 id=\"section-14\">Final Answer<\/h2>\n<p>Yes, WordPress has a built-in WYSIWYG editing experience, and yes, it is free. You can add a WYSIWYG editor to a WordPress meta box by using wp_editor(), saving the value with save_post, and outputting the stored content where needed. But for up-to-date WordPress development, this is now more of a legacy method than a best practice. WordPress increasingly favors blocks and post-meta-based block solutions for new work because they fit the modern editor better and avoid the known TinyMCE meta box limitations.<\/p>\n<h2 id=\"section-15\">FAQs<\/h2>\n<p><strong>Does WordPress come with a WYSIWYG editor?<\/strong><\/p>\n<p>Yes. Modern WordPress includes the Block Editor as the default visual editor, and WordPress core also includes the wp_editor() function for rich text editing in custom development.<\/p>\n<p><strong>Is the WordPress WYSIWYG editor free?<\/strong><\/p>\n<p>Yes. The built-in editor is included in WordPress core.<\/p>\n<p><strong>What function is used to add a WYSIWYG editor in WordPress code?<\/strong><\/p>\n<p>The classic function is wp_editor().<\/p>\n<p><strong>Is wp_editor() inside a meta box recommended?<\/strong><\/p>\n<p>It is possible, but WordPress warns that TinyMCE inside a meta box is not a great idea because of DOM movement limitations.<\/p>\n<p><strong>What is the modern alternative?<\/strong><\/p>\n<p>A custom block or sidebar interface that reads and writes post meta through the block editor and REST API is the more modern approach.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Table of Contents Introduction What Is a WYSIWYG Editor in WordPress? Does WordPress Have a WYSIWYG Editor? Is a WYSIWYG Editor Free? What Is a Meta Box in WordPress? Why Add a WYSIWYG Editor to a Meta Box? Can You Add a WYSIWYG Editor to a WordPress Meta Box? The Legacy Method: Add a WYSIWYG [&hellip;]<\/p>\n<div class='heateor_sss_sharing_container heateor_sss_vertical_sharing heateor_sss_bottom_sharing' style='width:29px;left: 10px;top: 250px;-webkit-box-shadow:none;box-shadow:none;' data-heateor-sss-href='https:\/\/www.woohelpdesk.com\/blog\/wp-json\/wp\/v2\/posts\/12918'><div class=\"heateor_sss_sharing_ul\"><a aria-label=\"Facebook\" class=\"heateor_sss_facebook\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fwww.woohelpdesk.com%2Fblog%2Fwp-json%2Fwp%2Fv2%2Fposts%2F12918\" title=\"Facebook\" rel=\"nofollow noopener\" target=\"_blank\" style=\"font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle\"><span class=\"heateor_sss_svg\" style=\"background-color:#0765FE;width:25px;height:25px;border-radius:999px;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box\"><svg style=\"display:block;border-radius:999px;\" focusable=\"false\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"100%\" height=\"100%\" viewBox=\"0 0 32 32\"><path fill=\"#fff\" d=\"M28 16c0-6.627-5.373-12-12-12S4 9.373 4 16c0 5.628 3.875 10.35 9.101 11.647v-7.98h-2.474V16H13.1v-1.58c0-4.085 1.849-5.978 5.859-5.978.76 0 2.072.15 2.608.298v3.325c-.283-.03-.775-.045-1.386-.045-1.967 0-2.728.745-2.728 2.683V16h3.92l-.673 3.667h-3.247v8.245C23.395 27.195 28 22.135 28 16Z\"><\/path><\/svg><\/span><\/a><a aria-label=\"X\" class=\"heateor_sss_button_x\" href=\"https:\/\/twitter.com\/intent\/tweet?text=WooHelpDesk%20Blog%20%E2%80%93%20WordPress%20%26%20WooCommerce%20Tips%20and%20Tutorials%20-%20&url=https%3A%2F%2Fwww.woohelpdesk.com%2Fblog%2Fwp-json%2Fwp%2Fv2%2Fposts%2F12918\" title=\"X\" rel=\"nofollow noopener\" target=\"_blank\" style=\"font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle\"><span class=\"heateor_sss_svg heateor_sss_s__default heateor_sss_s_x\" style=\"background-color:#2a2a2a;width:25px;height:25px;border-radius:999px;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box\"><svg width=\"100%\" height=\"100%\" style=\"display:block;border-radius:999px;\" focusable=\"false\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 32 32\"><path fill=\"#fff\" d=\"M21.751 7h3.067l-6.7 7.658L26 25.078h-6.172l-4.833-6.32-5.531 6.32h-3.07l7.167-8.19L6 7h6.328l4.37 5.777L21.75 7Zm-1.076 16.242h1.7L11.404 8.74H9.58l11.094 14.503Z\"><\/path><\/svg><\/span><\/a><a aria-label=\"Linkedin\" class=\"heateor_sss_button_linkedin\" href=\"https:\/\/www.linkedin.com\/sharing\/share-offsite\/?url=https%3A%2F%2Fwww.woohelpdesk.com%2Fblog%2Fwp-json%2Fwp%2Fv2%2Fposts%2F12918\" title=\"Linkedin\" rel=\"nofollow noopener\" target=\"_blank\" style=\"font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle\"><span class=\"heateor_sss_svg heateor_sss_s__default heateor_sss_s_linkedin\" style=\"background-color:#0077b5;width:25px;height:25px;border-radius:999px;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box\"><svg style=\"display:block;border-radius:999px;\" focusable=\"false\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"100%\" height=\"100%\" viewBox=\"0 0 32 32\"><path d=\"M6.227 12.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43 2.43 0 0 1 0 4.86c-1.344 0-2.428-1.09-2.428-2.43s1.084-2.43 2.428-2.43m4.72 6.7h4.02v1.84h.058c.56-1.058 1.927-2.176 3.965-2.176 4.238 0 5.02 2.792 5.02 6.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18 0-2.514 1.7-2.514 3.46v6.668h-4.187V12.61z\" fill=\"#fff\"><\/path><\/svg><\/span><\/a><a aria-label=\"Pinterest\" class=\"heateor_sss_button_pinterest\" href=\"https:\/\/www.woohelpdesk.com\/blog\/wp-json\/wp\/v2\/posts\/12918\" onclick=\"event.preventDefault();javascript:void( (function() {var e=document.createElement('script' );e.setAttribute('type','text\/javascript' );e.setAttribute('charset','UTF-8' );e.setAttribute('src','\/\/assets.pinterest.com\/js\/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)})());\" title=\"Pinterest\" rel=\"noopener\" style=\"font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle\"><span class=\"heateor_sss_svg heateor_sss_s__default heateor_sss_s_pinterest\" style=\"background-color:#cc2329;width:25px;height:25px;border-radius:999px;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box\"><svg style=\"display:block;border-radius:999px;\" focusable=\"false\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"100%\" height=\"100%\" viewBox=\"-2 -2 35 35\"><path fill=\"#fff\" d=\"M16.539 4.5c-6.277 0-9.442 4.5-9.442 8.253 0 2.272.86 4.293 2.705 5.046.303.125.574.005.662-.33.061-.231.205-.816.27-1.06.088-.331.053-.447-.191-.736-.532-.627-.873-1.439-.873-2.591 0-3.338 2.498-6.327 6.505-6.327 3.548 0 5.497 2.168 5.497 5.062 0 3.81-1.686 7.025-4.188 7.025-1.382 0-2.416-1.142-2.085-2.545.397-1.674 1.166-3.48 1.166-4.689 0-1.081-.581-1.983-1.782-1.983-1.413 0-2.548 1.462-2.548 3.419 0 1.247.421 2.091.421 2.091l-1.699 7.199c-.505 2.137-.076 4.755-.039 5.019.021.158.223.196.314.077.13-.17 1.813-2.247 2.384-4.324.162-.587.929-3.631.929-3.631.46.876 1.801 1.646 3.227 1.646 4.247 0 7.128-3.871 7.128-9.053.003-3.918-3.317-7.568-8.361-7.568z\"\/><\/svg><\/span><\/a><a aria-label=\"Telegram\" class=\"heateor_sss_button_telegram\" href=\"https:\/\/telegram.me\/share\/url?url=https%3A%2F%2Fwww.woohelpdesk.com%2Fblog%2Fwp-json%2Fwp%2Fv2%2Fposts%2F12918&text=WooHelpDesk%20Blog%20%E2%80%93%20WordPress%20%26%20WooCommerce%20Tips%20and%20Tutorials%20-%20\" title=\"Telegram\" rel=\"nofollow noopener\" target=\"_blank\" style=\"font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle\"><span class=\"heateor_sss_svg heateor_sss_s__default heateor_sss_s_telegram\" style=\"background-color:#3da5f1;width:25px;height:25px;border-radius:999px;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box\"><svg style=\"display:block;border-radius:999px;\" focusable=\"false\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"100%\" height=\"100%\" viewBox=\"0 0 32 32\"><path fill=\"#fff\" d=\"M25.515 6.896L6.027 14.41c-1.33.534-1.322 1.276-.243 1.606l5 1.56 1.72 5.66c.226.625.115.873.77.873.506 0 .73-.235 1.012-.51l2.43-2.363 5.056 3.734c.93.514 1.602.25 1.834-.863l3.32-15.638c.338-1.363-.52-1.98-1.41-1.577z\"><\/path><\/svg><\/span><\/a><a aria-label=\"Whatsapp\" class=\"heateor_sss_whatsapp\" href=\"https:\/\/api.whatsapp.com\/send?text=WooHelpDesk%20Blog%20%E2%80%93%20WordPress%20%26%20WooCommerce%20Tips%20and%20Tutorials%20-%20%20https%3A%2F%2Fwww.woohelpdesk.com%2Fblog%2Fwp-json%2Fwp%2Fv2%2Fposts%2F12918\" title=\"Whatsapp\" rel=\"nofollow noopener\" target=\"_blank\" style=\"font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle\"><span class=\"heateor_sss_svg\" style=\"background-color:#55eb4c;width:25px;height:25px;border-radius:999px;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box\"><svg style=\"display:block;border-radius:999px;\" focusable=\"false\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"100%\" height=\"100%\" viewBox=\"-6 -5 40 40\"><path class=\"heateor_sss_svg_stroke heateor_sss_no_fill\" stroke=\"#fff\" stroke-width=\"2\" fill=\"none\" d=\"M 11.579798566743314 24.396926207859085 A 10 10 0 1 0 6.808479557110079 20.73576436351046\"><\/path><path d=\"M 7 19 l -1 6 l 6 -1\" class=\"heateor_sss_no_fill heateor_sss_svg_stroke\" stroke=\"#fff\" stroke-width=\"2\" fill=\"none\"><\/path><path d=\"M 10 10 q -1 8 8 11 c 5 -1 0 -6 -1 -3 q -4 -3 -5 -5 c 4 -2 -1 -5 -1 -4\" fill=\"#fff\"><\/path><\/svg><\/span><\/a><\/div><div class=\"heateorSssClear\"><\/div><\/div>","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[],"class_list":["post-12918","post","type-post","status-publish","format-standard","hentry","category-wordpress"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.woohelpdesk.com\/blog\/wp-json\/wp\/v2\/posts\/12918","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.woohelpdesk.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.woohelpdesk.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.woohelpdesk.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.woohelpdesk.com\/blog\/wp-json\/wp\/v2\/comments?post=12918"}],"version-history":[{"count":3,"href":"https:\/\/www.woohelpdesk.com\/blog\/wp-json\/wp\/v2\/posts\/12918\/revisions"}],"predecessor-version":[{"id":12921,"href":"https:\/\/www.woohelpdesk.com\/blog\/wp-json\/wp\/v2\/posts\/12918\/revisions\/12921"}],"wp:attachment":[{"href":"https:\/\/www.woohelpdesk.com\/blog\/wp-json\/wp\/v2\/media?parent=12918"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.woohelpdesk.com\/blog\/wp-json\/wp\/v2\/categories?post=12918"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.woohelpdesk.com\/blog\/wp-json\/wp\/v2\/tags?post=12918"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}