{"id":2021899,"date":"2025-01-21T15:12:18","date_gmt":"2025-01-21T15:12:18","guid":{"rendered":"https:\/\/wpx.net\/blog\/?p=2021899"},"modified":"2025-01-21T15:12:20","modified_gmt":"2025-01-21T15:12:20","slug":"increase-wordpress-speed","status":"publish","type":"post","link":"https:\/\/wpx.net\/blog\/increase-wordpress-speed\/","title":{"rendered":"11 Powerful Ways To Increase WordPress Speed Without Plugins"},"content":{"rendered":"\n<p>When it comes to optimizing WordPress speed optimization, many solutions involve using plugins. Plugins are a great solution for boosting your WordPress site performance, however, there are a few things that you can do without them. If you&#8217;re looking to speed up WooCommerce or any WordPress and improve the overall performance, starting with the right hosting provider is critical.&nbsp; If you&#8217;re using a high-performance hosting solution like <a href=\"https:\/\/wpx.net\/cart\/wordpress-hosting\/\">WPX Hosting<\/a>, you&#8217;re already ahead of the game.<\/p>\n\n\n\n<p>Let\u2019s dive into practical tactics to increase your WordPress website&#8217;s speed and ensure smooth WooCommerce page speed optimization without relying on plugins.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"1_Choose_High-Performance_Hosting\"><\/span>1. Choose High-Performance Hosting<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>The foundation of a fast website begins with a good hosting provider. WPX Hosting delivers lightning-fast performance with servers, optimized for WordPress, with built-in features like SSD storage, a custom CDN, and enterprise-level security\u2014all of which ensure your site loads quickly and reliably.<\/p>\n\n\n\n<p>Unlike other shared hosting providers, WPX Hosting is designed to handle WordPress sites with high traffic while maintaining consistent speed. A good hosting provider eliminates many of the bottlenecks that plugins aim to fix, such as slow server response times or limited resources.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"11_Backup_your_website\"><\/span>1.1. Backup your website<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Before making any changes to your site, it\u2019s highly recommended to create a backup. Having a backup ensures you can easily restore your site to its previous state if anything goes wrong. WPX offers daily backups, retains them for 28 days, and also allows you to create <a href=\"https:\/\/kb.wpx.net\/how-can-i-backup-my-site-personal-backups\/\">on-demand backups<\/a>. Additional methods for backing up your site are detailed in this <a href=\"https:\/\/wpx.net\/blog\/how-to-backup-your-wordpress-site-3-simple-methods\/\">article<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"2_Optimize_Images_Before_Uploading\"><\/span>2. Optimize Images Before Uploading<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Large, unoptimized images are one of the biggest culprits behind slow-loading websites. Compressing your images before uploading them can dramatically speed up your WordPress website.<\/p>\n\n\n\n<p>How to Optimize Your Images:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You can use tools like <a href=\"https:\/\/tinypng.com\/\" target=\"_blank\" rel=\"noopener\"><strong>TinyPNG<\/strong><\/a>, <a href=\"https:\/\/squoosh.app\/\" target=\"_blank\" rel=\"noopener\"><strong>Squoosh<\/strong><\/a>, or <a href=\"https:\/\/imageoptim.com\/mac\" target=\"_blank\" rel=\"noopener\"><strong>ImageOptim<\/strong> <\/a>to compress images without losing quality.<\/li>\n\n\n\n<li>Resize images to match the dimensions required by your WordPress theme. For example, if your blog displays images at 1200&#215;800 pixels, don\u2019t upload 4000&#215;3000-pixel images.\u00a0<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"3_Enable_Browser_Caching\"><\/span>3. Enable Browser Caching<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Browser caching stores static resources like CSS, JavaScript, and images on a visitor\u2019s device so that subsequent visits load faster. While many use plugins for this, you can implement browser caching manually.<\/p>\n\n\n\n<p>How to Set Up Caching Without Plugins:<\/p>\n\n\n\n<p>In this step, you will need to access your .htaccess file. That file is located in the root directory of your WordPress website &#8211; in our case, wpxexample.net is the main domain in my WPX Professional plan, so its root directory is public_html. You can use File Manager or FTP Client to access the file.&nbsp;<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Access your .htaccess file (located in your WordPress root directory, in WPX this would be \/public_html).<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh7-rt.googleusercontent.com\/docsz\/AD_4nXfy5xFWcBq8gioXrm4dP_K59UxXHXzkkv6DdBKh8MS5_88ZkAuqT9X2qKGo49-Pn8_DxUOVnF8Zm2qBSS0iRGPzVez2LEpEuENSeDE3Rrweq6DtEhJ-_s6PmnTBkC4wiDpcuCKTCg?key=xwq_mql4KIjyj25FGApRyHXh\" alt=\"enable browser caching to increase wordpress speed\"\/><\/figure>\n\n\n\n<ol start=\"2\" class=\"wp-block-list\">\n<li>Add the following code to enable browser caching (expired headers) :<\/li>\n<\/ol>\n\n\n\n<p>&lt;IfModule mod_expires.c&gt;<\/p>\n\n\n\n<p>ExpiresActive on<\/p>\n\n\n\n<p>ExpiresDefault &#8220;access plus 1 month&#8221;<\/p>\n\n\n\n<p># cache.appcache needs re-requests in FF 3.6<\/p>\n\n\n\n<p>ExpiresByType text\/cache-manifest &#8220;access plus 0 seconds&#8221;<\/p>\n\n\n\n<p># Your document html<\/p>\n\n\n\n<p>ExpiresByType text\/html &#8220;access plus 1 hour&#8221;<\/p>\n\n\n\n<p># Data<\/p>\n\n\n\n<p>ExpiresByType text\/xml &#8220;access plus 0 seconds&#8221;<\/p>\n\n\n\n<p>ExpiresByType application\/xml &#8220;access plus 0 seconds&#8221;<\/p>\n\n\n\n<p>ExpiresByType application\/json &#8220;access plus 0 seconds&#8221;<\/p>\n\n\n\n<p># Feed<\/p>\n\n\n\n<p>ExpiresByType application\/rss+xml &#8220;access plus 1 hour&#8221;<\/p>\n\n\n\n<p>ExpiresByType application\/atom+xml &#8220;access plus 1 hour&#8221;<\/p>\n\n\n\n<p># Favicon (cannot be renamed)<\/p>\n\n\n\n<p>ExpiresByType image\/x-icon &#8220;access plus 1 week&#8221;<\/p>\n\n\n\n<p># Media: images, video, audio<\/p>\n\n\n\n<p>ExpiresByType image\/gif &#8220;access plus 4 months&#8221;<\/p>\n\n\n\n<p>ExpiresByType image\/png &#8220;access plus 4 months&#8221;<\/p>\n\n\n\n<p>ExpiresByType image\/jpeg &#8220;access plus 4 months&#8221;<\/p>\n\n\n\n<p>ExpiresByType image\/webp &#8220;access plus 4 months&#8221;<\/p>\n\n\n\n<p>ExpiresByType video\/ogg &#8220;access plus 4 months&#8221;<\/p>\n\n\n\n<p>ExpiresByType audio\/ogg &#8220;access plus 4 months&#8221;<\/p>\n\n\n\n<p>ExpiresByType video\/mp4 &#8220;access plus 4 months&#8221;<\/p>\n\n\n\n<p>ExpiresByType video\/webm &#8220;access plus 4 months&#8221;<\/p>\n\n\n\n<p>ExpiresByType image\/avif &#8220;access plus 4 months&#8221;<\/p>\n\n\n\n<p>ExpiresByType image\/avif-sequence &#8220;access plus 4 months&#8221;<\/p>\n\n\n\n<p># HTC files (css3pie)<\/p>\n\n\n\n<p>ExpiresByType text\/x-component &#8220;access plus 1 month&#8221;<\/p>\n\n\n\n<p># Webfonts<\/p>\n\n\n\n<p>ExpiresByType font\/ttf &#8220;access plus 4 months&#8221;<\/p>\n\n\n\n<p>ExpiresByType font\/otf &#8220;access plus 4 months&#8221;<\/p>\n\n\n\n<p>ExpiresByType font\/woff &#8220;access plus 4 months&#8221;<\/p>\n\n\n\n<p>ExpiresByType font\/woff2 &#8220;access plus 4 months&#8221;<\/p>\n\n\n\n<p>ExpiresByType image\/svg+xml &#8220;access plus 4 months&#8221;<\/p>\n\n\n\n<p>ExpiresByType application\/vnd.ms-fontobject &#8220;access plus 1 month&#8221;<\/p>\n\n\n\n<p># CSS and JavaScript<\/p>\n\n\n\n<p>ExpiresByType text\/css &#8220;access plus 1 year&#8221;<\/p>\n\n\n\n<p>ExpiresByType application\/javascript &#8220;access plus 1 year&#8221;<\/p>\n\n\n\n<p>&lt;\/IfModule&gt;<\/p>\n\n\n\n<p>3. You can also add the following lines to enable gzip compression:<\/p>\n\n\n\n<p>GZIP compression<\/p>\n\n\n\n<p>&lt;IfModule mod_deflate.c&gt;<\/p>\n\n\n\n<p>AddOutputFilterByType DEFLATE text\/plain<\/p>\n\n\n\n<p>AddOutputFilterByType DEFLATE text\/html<\/p>\n\n\n\n<p>AddOutputFilterByType DEFLATE text\/xml<\/p>\n\n\n\n<p>AddOutputFilterByType DEFLATE text\/css<\/p>\n\n\n\n<p>AddOutputFilterByType DEFLATE application\/xml<\/p>\n\n\n\n<p>AddOutputFilterByType DEFLATE application\/xhtml+xml<\/p>\n\n\n\n<p>AddOutputFilterByType DEFLATE application\/rss+xml<\/p>\n\n\n\n<p>AddOutputFilterByType DEFLATE application\/javascript<\/p>\n\n\n\n<p>AddOutputFilterByType DEFLATE application\/x-javascript<\/p>\n\n\n\n<p>&lt;\/IfModule&gt;<\/p>\n\n\n\n<p>Those lines are usually automatically added to the .htaccess file of your website by using a <a href=\"https:\/\/wp-rocket.me\/\" target=\"_blank\" rel=\"noopener\">cache <\/a>plugin. However, if you want to avoid using plugins, you can add them manually. This simple tweak can significantly improve load times for returning visitors.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"4_Minify_CSS_JavaScript_and_HTML\"><\/span>4. Minify CSS, JavaScript, and HTML<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>While plugins like <a href=\"https:\/\/wordpress.org\/plugins\/autoptimize\/\" target=\"_blank\" rel=\"noopener\">Autoptimize <\/a>can handle minification, it\u2019s possible to do this manually. Minification reduces the size of your website\u2019s files by removing unnecessary characters, spaces, and comments.<\/p>\n\n\n\n<p>Tools for Manual Minification:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use<a href=\"https:\/\/www.toptal.com\/developers\/cssminifier\" target=\"_blank\" rel=\"noopener\"> CSS Minifier<\/a> and<strong> <\/strong><a href=\"https:\/\/jscompress.com\/\" target=\"_blank\" rel=\"noopener\"><strong>JSCompress<\/strong><\/a> to minify your files.<\/li>\n\n\n\n<li>Upload the minified files via File Manager or<a href=\"https:\/\/kb.wpx.net\/how-can-i-use-filezilla\/\"> FTP Client<\/a> to replace the original ones.<\/li>\n<\/ul>\n\n\n\n<p><strong>Note:<\/strong> WPX Hosting\u2019s fast servers can handle even non-minified files with ease, but every millisecond counts in optimization.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"5_Utilize_a_Content_Delivery_Network_CDN\"><\/span>5. Utilize a Content Delivery Network (CDN)<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>A CDN distributes your site\u2019s static content (like images and CSS) across multiple servers worldwide, ensuring visitors load the content from a server closest to them. WPX Hosting includes a custom-built CDN, saving you from the hassle of setting up third-party CDNs.<\/p>\n\n\n\n<p>Why <a href=\"https:\/\/kb.wpx.net\/wpx-xdn-why-does-your-website-need-it\/\">WPX\u2019s XDN<\/a> Stands Out:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh7-rt.googleusercontent.com\/docsz\/AD_4nXdqH4kphh3cDvOnMlypWpae8D-uNelcuV-4oKhaBhC-t8mnb97jSpuOwJGKxaExqbEZfqU74PBr0b8wofK3FU0lZNF4X2vAwVJt6YfvBQv1mydbta7BJ8OGp3UfQ5VqXI77HrAn?key=xwq_mql4KIjyj25FGApRyHXh\" alt=\"use CDN to speed up WordPress website\"\/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It\u2019s specifically optimized for WordPress sites.<\/li>\n\n\n\n<li>It\u2019s included at no additional cost with your hosting plan.<\/li>\n\n\n\n<li>The setup is seamless, meaning you don\u2019t need any technical expertise.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"6_Limit_External_Scripts_and_Fonts\"><\/span>6. Limit External Scripts and Fonts<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>External scripts, such as Google Fonts or third-party ad trackers, can significantly impact your site\u2019s loading time. While you may not be able to eliminate them all, you can minimize their effect.<\/p>\n\n\n\n<p>Tips:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use system fonts instead of loading multiple Google Fonts.<\/li>\n\n\n\n<li>Combine and host custom fonts locally to reduce HTTP requests.<\/li>\n\n\n\n<li>Only load essential scripts by reviewing your theme\u2019s functions.php file.<\/li>\n<\/ul>\n\n\n\n<p>If you\u2019re using any kind of <a href=\"https:\/\/wordpress.org\/documentation\/article\/block-themes\/\" target=\"_blank\" rel=\"noopener\">block theme<\/a>, WordPress core started to host fonts locally (for those kinds of themes). <img decoding=\"async\" src=\"https:\/\/lh7-rt.googleusercontent.com\/docsz\/AD_4nXc92SONa7h-WvzZgj5XXNYwW6LaYyVSMCM43MyvKUSWVzcOxKJM4t-hOt39S9KYA6Ob2KSzKtFFYOt-XB2dtd0i7nx-BxydM2uhu-Lz9T_uvc7T6gh1x9anSPz4Yzxkfj8V_vo4wA?key=xwq_mql4KIjyj25FGApRyHXh\" style=\"\" alt=\"limit external scripts for woocommerce page speed optimization\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"7_Optimize_Your_Database\"><\/span>7. Optimize Your Database<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Over time, your WordPress database accumulates unnecessary data like post revisions, trashed posts, and spam comments. Optimizing your database regularly can reduce its size and speed up queries.<\/p>\n\n\n\n<p>Manual Database Optimization Steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Use <a href=\"https:\/\/kb.wpx.net\/how-can-i-access-my-phpmyadmin\/\">phpMyAdmin <\/a>to remove unnecessary data manually.<\/li>\n\n\n\n<li>If you haven\u2019t done a backup yet, make sure to create one, or export the <a href=\"https:\/\/kb.wpx.net\/how-can-i-export-a-database\/\">database<\/a>.\u00a0<\/li>\n\n\n\n<li>Then select your database and click on the SQL tab on the right. You will see a field to type in your SQL query.\u00a0<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh7-rt.googleusercontent.com\/docsz\/AD_4nXedN8JsUPxxk6GoAEwmFYL-DpkdgtklFqi9SaHbhxH5o7r0ezo6Mecryns3Gq--C1uwIM1jgEi2m4tryjonzgXUl2-L1nWK9E6UMsNb_XTbYCKdcIbGsBgjN9SI2J1TEjcOVjjc?key=xwq_mql4KIjyj25FGApRyHXh\" alt=\"optimize your database for wordpress speed optimization\"\/><\/figure>\n\n\n\n<ol start=\"4\" class=\"wp-block-list\">\n<li>Run SQL queries like:<\/li>\n<\/ol>\n\n\n\n<p>DELETE FROM wp_posts WHERE post_type = &#8216;revision&#8217;;<\/p>\n\n\n\n<p>OPTIMIZE TABLE wp_posts, wp_comments, wp_options;<\/p>\n\n\n\n<p>DELETE FROM wp_postmeta WHERE meta_key = &#8216;_edit_lock&#8217;;&nbsp;&nbsp;<\/p>\n\n\n\n<p>DELETE FROM wp_comments WHERE comment_approved = &#8216;spam&#8217;;&nbsp;&nbsp;<\/p>\n\n\n\n<p>DELETE FROM wp_options WHERE option_name LIKE (&#8216;%<em>transient<\/em>%&#8217;)<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"8_Reduce_HTTP_Requests\"><\/span>8. Reduce HTTP Requests<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Whenever a browser loads your site, it sends HTTP requests for every element (images, CSS files, JavaScript, etc.). Fewer requests mean faster load times.<\/p>\n\n\n\n<p>How to Reduce HTTP Requests:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Combine CSS and JavaScript files where possible.<\/li>\n\n\n\n<li>Use inline CSS for small snippets.<\/li>\n\n\n\n<li>Use browser developer tools to identify and remove unused resources.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"9_Leverage_Lazy_Loading_for_Images_and_Videos\"><\/span>9. Leverage Lazy Loading for Images and Videos<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Lazy loading ensures that images and videos only load when they are about to enter the viewport, reducing initial page load time. Modern WordPress versions have built-in lazy loading capabilities, so you may not need to add custom code. However, if necessary, you can enable it manually:<\/p>\n\n\n\n<p>Add This Code to Your Theme (manually from the Theme Editor).&nbsp;<\/p>\n\n\n\n<p>&lt;img loading=&#8221;lazy&#8221; src=&#8221;your-image.jpg&#8221; alt=&#8221;description&#8221;&gt;&nbsp;&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"11_Use_the_Latest_PHP_Version\"><\/span>11. Use the Latest PHP Version<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>PHP is the scripting language that powers WordPress, and each new version comes with performance improvements, security fixes, and efficiency enhancements. Running your site on the latest PHP version can significantly reduce load times and server resource usage.<\/p>\n\n\n\n<p>Why This Matters:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Newer PHP versions (e.g., PHP 8.x) execute code faster than older ones like PHP 7.x or PHP 5.x. (<a href=\"https:\/\/kb.wpx.net\/what-version-of-php-mysql-is-currently-running-on-wpx\/\">WPX supports the latest PHP version<\/a>).\u00a0<\/li>\n\n\n\n<li>They are more secure and compatible with modern WordPress themes and plugins.<\/li>\n<\/ul>\n\n\n\n<p>How to Check and Update PHP:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Log into your hosting control panel (WPX Hosting makes this process seamless).<\/li>\n\n\n\n<li>Navigate to your website and select Settings.\u00a0<\/li>\n\n\n\n<li>Then click on the PHP tab and select the latest one. Click on the Save Changes button.\u00a0<\/li>\n\n\n\n<li>Test your site for compatibility using WP Debugging tools before upgrading.<\/li>\n<\/ol>\n\n\n\n<p>WPX Hosting ensures you can easily switch to the latest PHP version without technical difficulties, providing an added edge for speed optimization. Here is a<a href=\"https:\/\/kb.wpx.net\/how-can-i-change-the-php-version-of-my-website\/\"> step-by-step guide<\/a> on the topic.&nbsp;<\/p>\n\n\n\n<h1 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Final_Thoughts\"><\/span>Final Thoughts:&nbsp;<span class=\"ez-toc-section-end\"><\/span><\/h1>\n\n\n\n<p>No amount of  optimization can make up for slow, unreliable hosting. WPX Hosting provides a solid base for all your speed optimization efforts, reducing the need for many plugins and third-party tools. With features like free CDN, SSD storage, and WordPress-specific optimizations, WPX Hosting ensures your site remains fast, secure, and scalable.\u00a0<\/p>\n\n\n\n<p>By combining these manual techniques with the premium infrastructure offered by WPX Hosting, you\u2019ll have a WordPress site that delivers exceptional performance without relying on plugins. All the steps outlined in this article can significantly improve your WordPress site&#8217;s speed. However, these speed optimizations can often be simplified by using dedicated optimization plugins. Just keep in mind that you should only use plugins from reputable developers since <a href=\"https:\/\/wpx.net\/blog\/real-time-defence-against-a-wordpress-plugin-exploit\/\" data-type=\"link\" data-id=\"https:\/\/wpx.net\/blog\/real-time-defence-against-a-wordpress-plugin-exploit\/\">plugins are a prime target for cyberattacks<\/a>. <\/p>\n\n\n\n<p>You can skip the hassle entirely and let the <a href=\"https:\/\/kb.wpx.net\/how-can-i-start-the-optimization-of-my-site\/\">WPX Optimization team <\/a>handle everything for you, ensuring your site runs at peak performance with minimal effort on your part.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When it comes to optimizing WordPress speed optimization, many solutions involve using plugins. Plugins are a great solution for boosting your WordPress site performance, however, there are a few things that you can do without them. If you&#8217;re looking to speed up WooCommerce or any WordPress and improve the overall performance, starting with the right [&hellip;]<\/p>\n","protected":false},"author":14,"featured_media":2021900,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"cybocfi_hide_featured_image":"","footnotes":""},"categories":[86],"tags":[],"ppma_author":[109],"class_list":["post-2021899","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wordpress"],"blocksy_meta":[],"authors":[{"term_id":109,"user_id":14,"is_guest":0,"slug":"yoana","display_name":"Yoana Genova","avatar_url":{"url":"https:\/\/wpx.net\/blog\/wp-content\/uploads\/2024\/07\/yoana-scaled-e1721290277403.jpg","url2x":"https:\/\/wpx.net\/blog\/wp-content\/uploads\/2024\/07\/yoana-scaled-e1721290277403.jpg"},"0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""}],"_links":{"self":[{"href":"https:\/\/wpx.net\/blog\/wp-json\/wp\/v2\/posts\/2021899","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wpx.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wpx.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wpx.net\/blog\/wp-json\/wp\/v2\/users\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/wpx.net\/blog\/wp-json\/wp\/v2\/comments?post=2021899"}],"version-history":[{"count":1,"href":"https:\/\/wpx.net\/blog\/wp-json\/wp\/v2\/posts\/2021899\/revisions"}],"predecessor-version":[{"id":2021901,"href":"https:\/\/wpx.net\/blog\/wp-json\/wp\/v2\/posts\/2021899\/revisions\/2021901"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wpx.net\/blog\/wp-json\/wp\/v2\/media\/2021900"}],"wp:attachment":[{"href":"https:\/\/wpx.net\/blog\/wp-json\/wp\/v2\/media?parent=2021899"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wpx.net\/blog\/wp-json\/wp\/v2\/categories?post=2021899"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wpx.net\/blog\/wp-json\/wp\/v2\/tags?post=2021899"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/wpx.net\/blog\/wp-json\/wp\/v2\/ppma_author?post=2021899"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}