{"id":11528,"date":"2021-12-08T17:04:58","date_gmt":"2021-12-08T17:04:58","guid":{"rendered":"https:\/\/getdevdone.com\/blog\/?p=11528"},"modified":"2022-11-28T14:34:02","modified_gmt":"2022-11-28T14:34:02","slug":"customize-wordpress-dashboard-without-plugins","status":"publish","type":"post","link":"https:\/\/getdevdone.com\/blog\/customize-wordpress-dashboard-without-plugins.html","title":{"rendered":"Customize a WordPress Dashboard Without Plugins"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"682\" src=\"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23073109\/Title_Image-1024x682.jpg\" alt=\"\" class=\"wp-image-11530\" srcset=\"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23073109\/Title_Image-1024x682.jpg 1024w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23073109\/Title_Image-300x200.jpg 300w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23073109\/Title_Image-768x512.jpg 768w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23073109\/Title_Image-1536x1023.jpg 1536w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23073109\/Title_Image.jpg 1600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Editor&#8217;s Note<\/h2>\n\n\n\n<p><em>WordPress is a popular CMS that has been around for years. It has tons of features for each and every purpose. If no feature covers certain functionality, users are sure to find a fill-the-gap plugin among thousands of available solutions<\/em>.&nbsp;<\/p>\n\n\n\n<p><em>As useful as plugins are, though, they can cause what has been dubbed as the plugin hell. Too many add-ons may conflict with one another, disrupting the normal operation of the site. A vendor may also decide to discontinue supporting their plugin, thus creating security threats<\/em>.&nbsp;<\/p>\n\n\n\n<p><em>Valerie Muradian believes that users shouldn\u2019t rely on plugins alone. In many cases, they can benefit by learning about the native WordPress capabilities and implementing them with their own hands. An example that she describes in her post below is manually customizing the WordPress dashboard. Read it. It will be interesting.&nbsp;<\/em><\/p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity advgb-dyn-c3f4f0ad\"\/>\n\n\n\n<p><\/p>\n\n\n\n<p>We all love WordPress for its flexibility and possibilities for customization. No matter how many new, shiny website builders appear on the market (and it feels like we get a new one every week or so), a lot of people prefer to stick with WordPress. It\u2019s reliable, it\u2019s been around for years, and if you need to add a new feature to your website\u200a\u2014<strong>\u200athere is always a plugin for that<\/strong>!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Plugins or&nbsp;Code?<\/h2>\n\n\n\n<p>A lot of my clients love WordPress and run multiple websites using this platform. What they notice over the years, though, is that \u201ctoo many plugins\u201d is a real thing. When there are plugins for <em>anything<\/em>, even tiny things that can be achieved with one line of code, they don\u2019t hesitate to install it. Why not? Some of them are free, they are easy to use, most of them get regular updates and quality support. But then, the website gradually becomes slower and the menu panel gets crowded with links, buttons, annoying requests to rate this plugin and leave a 5-star review. The updates also pile up and sometimes, one update can ruin your day by breaking everything.<\/p>\n\n\n\n<p>Don\u2019t get me wrong\u200a\u2014\u200aplugins are great <strong>but<\/strong> sometimes it\u2019s better to modify the code a little bit instead of adding another plugin to the pile. Some things can be achieved by copying and pasting a piece of code or by just learning more about the native features of WordPress. A good example would be a WordPress dashboard. Yes, that boring gray page a lot of people don\u2019t even use.<\/p>\n\n\n\n<p>Below, I\u2019ll share a few code snippets that can be easily added to your <strong>function.php<\/strong> page (located in <strong>Appearance &gt; Theme Editor<\/strong>). If you are a confident WP user, chances are you edited that file before. But even if it\u2019s your first time, just be careful and <strong>always do a full website backup<\/strong> before adding anything to that file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1. Add a Custom Widget with Buttons and&nbsp;Links<\/h2>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full advgb-dyn-455d6ff0\"><img decoding=\"async\" width=\"500\" height=\"334\" src=\"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23082604\/add_custom_widget.png\" alt=\"\" class=\"wp-image-11534\" srcset=\"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23082604\/add_custom_widget.png 500w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23082604\/add_custom_widget-300x200.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/><\/figure>\n\n\n\n<p>Widgets are those small boxes you see on any standard WordPress dashboard. Basically, they are just boxes with information that can be moved around, opened, or closed. The most popular ones you probably saw a lot are standard widgets from WordPress\u200a\u2014\u200aAt a Glance, Activity, WordPress News. Let\u2019s add another block in this area\u200a\u2014\u200athe widget you will actually use.<br>Almost all website owners have some important links, information, or things they want to be reminded about. This can be achieved with a few lines of code:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">\n\/\/add a custom dashboard widget for admins\nadd_action('wp_dashboard_setup', 'my_custom_dashboard_widget');\n  \nfunction my_custom_dashboard_widget() {\n    global $wp_meta_boxes;\n    wp_add_dashboard_widget('custom_help_widget', 'Admin Links', 'custom_dashboard_help');\n}\n \nfunction custom_dashboard_help() {\n    echo 'My text. My link &lt;a href=\"https:\/\/mywebsite.com\" target=\"_blank\"&gt;here&lt;\/a&gt;.\n    &lt;button type=\"button\"&gt;My button&lt;\/button&gt;&lt;\/a&gt;.';\n}<\/code><\/pre>\n\n\n\n<p><br>Copy the whole block and change the content in the custom_dashboard_help() function after the echo. If you want your link to open on a new page, leave the target=\u201d_blank\u201d next to the link. To customize the widget even further, you\u2019ll need to know the basics of HTML and CSS that you can easily find online.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"978\" height=\"214\" src=\"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23082715\/admin_links.png\" alt=\"\" class=\"wp-image-11535\" srcset=\"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23082715\/admin_links.png 978w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23082715\/admin_links-300x66.png 300w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23082715\/admin_links-768x168.png 768w\" sizes=\"(max-width: 978px) 100vw, 978px\" \/><\/figure>\n\n\n\n<p>Getting errors? Double-check your closing and opening quotes and tags.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">2. Add a Custom Settings&nbsp;Page<\/h2>\n\n\n\n<p>Noe, when we can add links and buttons, it\u2019s time to create a settings page with your custom content. It can be anything from a simple how-to guide or a text reminder to global fields and buttons that perform some actions.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"567\" src=\"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23082859\/update_season-1024x567.png\" alt=\"\" class=\"wp-image-11536\" srcset=\"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23082859\/update_season-1024x567.png 1024w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23082859\/update_season-300x166.png 300w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23082859\/update_season-768x425.png 768w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23082859\/update_season.png 1326w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>In this example, we have a new page settings page with a globally defined field that can be used anywhere on the website, a button to update the value in that field, and another button that runs a <strong>clear_shows()<\/strong> function. This is a very basic example but it\u2019s a good start if you need more than a standard WP settings page can provide.<\/p>\n\n\n\n<p>The code below will create a new page with a new menu item called Global Custom Fields under settings and the following URL:<\/p>\n\n\n\n<p><a href=\"https:\/\/{your-website}\/wp-admin\/options-general.php?page=functions\">https:\/\/{your-website}\/wp-admin\/options-general.php?page=functions<\/a><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">&lt;?php \n\/\/ Custom Theme Settings\nadd_action('admin_menu', 'add_gcf_interface');\nfunction add_gcf_interface() {\n    add_options_page('Global Custom Fields', 'Global Custom Fields', '8', 'functions',     'editglobalcustomfields');\n}\nfunction editglobalcustomfields() {\n?&gt;\n&lt;div class='wrap'&gt;\n    &lt;h2&gt;Update Season&lt;\/h2&gt;\n    &lt;form method=\"post\" action=\"options.php\"&gt;\n        &lt;?php wp_nonce_field('update-options') ?&gt;\n        &lt;p&gt;&lt;strong&gt;Season:&lt;\/strong&gt;&lt;br \/&gt;\n            &lt;input type=\"text\" name=\"season\" size=\"45\" value=\"&lt;?php echo get_option('season'); ?&gt;\" \/&gt;\n        &lt;\/p&gt;\n        &lt;p&gt;&lt;input type=\"submit\" name=\"Submit\" value=\"Update Options\" \/&gt;&lt;\/p&gt;\n        &lt;button onclick=\"clear_shows()\"&gt;Advance to a new season&lt;\/button&gt;\n        &lt;input type=\"hidden\" name=\"action\" value=\"update\" \/&gt;\n        &lt;input type=\"hidden\" name=\"page_options\" value=\"season\" \/&gt;\n    &lt;\/form&gt;\n&lt;\/div&gt;\n&lt;?php\n} \n?&gt;<\/code><\/pre>\n\n\n\n<p>At first, the new season field will be empty but enter a date and run an update\u200a\u2014\u200anow that value can be used anywhere on the website by simply calling the name of the field:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">&lt;?php echo get_option('season'); ?&gt;<\/code><\/pre>\n\n\n\n<p>If you are familiar at all with HTML, you should have no issues with removing fields or adding new areas. Just make sure that each new field has a unique label and unique name.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">3. Remove the Widgets You Don\u2019t&nbsp;Use<\/h2>\n\n\n\n<p>Remember those boring, standard widgets from WordPress that we\u2019ve seen earlier? Here is another useful piece of code to declutter your dashboard that simply hides the widget you don\u2019t use. The code below hides 3 common WordPress widgets but you can remove any widget using the same technique.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">function remove_dashboard_meta() {\n    remove_meta_box('dashboard_incoming_links', 'dashboard', 'normal'); \/\/Removes the 'incoming links' widget\n    remove_meta_box('dashboard_plugins', 'dashboard', 'normal'); \/\/Removes the 'plugins' widget\n    remove_meta_box('dashboard_primary', 'dashboard', 'normal'); \/\/Removes the 'WordPress News' widget\n    remove_meta_box('dashboard_right_now', 'dashboard', 'normal'); \/\/Removes the 'At a Glance' widget\n}\nadd_action('admin_init', 'remove_dashboard_meta');<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">4. Change the Color Scheme of the Dashboard<\/h2>\n\n\n\n<p>This one is simple and doesn\u2019t require any code. In my experience, a lot of users forget about this standard WordPress feature that allows setting a unique color palette for each user. In order to do this, go to <em>Users &gt; All Users<\/em> and click on the <em>Edit<\/em> link under the user you want to customize the dashboard for.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"248\" src=\"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23083005\/personal_options-1024x248.png\" alt=\"\" class=\"wp-image-11537\" srcset=\"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23083005\/personal_options-1024x248.png 1024w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23083005\/personal_options-300x73.png 300w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23083005\/personal_options-768x186.png 768w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23083005\/personal_options-1536x372.png 1536w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23083005\/personal_options.png 1600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">5. Change the WordPress Logo<\/h2>\n\n\n\n<p>There is nothing wrong with using a WP login page but customizing its appearance can make a big difference and reinforce your brand. Again, you can use a plugin or follow <a href=\"https:\/\/codex.wordpress.org\/Customizing_the_Login_Form\" target=\"_blank\" rel=\"noreferrer noopener\">this helpful guide<\/a> from WordPress. If you decide to do the changes yourself, all you need to do to change the logo is to modify the CSS styles of your header files. Once you find the right file, replace the <em>site-login-logo.png<\/em> file with the file name of your logo.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">6. Add an Interactive Chart to Your Dashboard<\/h2>\n\n\n\n<p>The last tip is probably my favorite simply because I\u2019m a visual person and it\u2019s hard for me to imagine a functional dashboard without any charts. But don\u2019t worry\u200a\u2014\u200awe are not going to write the code for charts ourselves. Instead, we can use any online charting tool or a very popular data visualization software called Tableau.<\/p>\n\n\n\n<p>If you don\u2019t have a Tableau license, try experimenting with charts from <a href=\"https:\/\/public.tableau.com\/app\" target=\"_blank\" rel=\"noreferrer noopener\">Tableau Public <\/a>first. Once you are there, open the gallery and choose any chart you like. Below, you\u2019ll see a share button that opens a menu with an embed code.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full advgb-dyn-053efd53\"><img decoding=\"async\" width=\"592\" height=\"470\" src=\"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23083057\/share.png\" alt=\"\" class=\"wp-image-11538\" srcset=\"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23083057\/share.png 592w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23083057\/share-300x238.png 300w\" sizes=\"(max-width: 592px) 100vw, 592px\" \/><\/figure>\n\n\n\n<p>Copy this code and try adding it to the custom widget we created at the beginning of this post. Again, you\u2019ll need to use <strong>echo, <\/strong>surround your code with double quotes and put a semicolon in the end.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"245\" src=\"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23083202\/custom_dashboard_help-1024x245.png\" alt=\"\" class=\"wp-image-11539\" srcset=\"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23083202\/custom_dashboard_help-1024x245.png 1024w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23083202\/custom_dashboard_help-300x72.png 300w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23083202\/custom_dashboard_help-768x184.png 768w, https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/11\/23083202\/custom_dashboard_help.png 1431w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>As a result, you\u2019ll see a fully interactive data viz on your dashboard! Using the same approach, you can add more stuff from other websites that provide embed code for their content.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity advgb-dyn-c3f4f0ad\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Top-Quality WordPress Development Services from GetDevDone<\/strong><\/h2>\n\n\n\n<p><em>We are sure you found Valerie\u2019s material engaging and useful. Apart from the Dashboard, many other WordPress areas can be customized to suit your specific business needs.&nbsp;<\/em><\/p>\n\n\n\n<p><em>In many situations, this involves more than just adding a few lines of code and calls for assistance from professionals such as the <a href=\"https:\/\/getdevdone.com\/wordpress-development-services.html\" target=\"_blank\" rel=\"noreferrer noopener\">GetDevDone WordPress development team<\/a>.&nbsp;&nbsp;<\/em><\/p>\n\n\n\n<p><em>With 16+ years of industry experience and thousands of successfully completed WP projects, we know everything about the world&#8217;s most popular CMS.<\/em><\/p>\n\n\n\n<p><a href=\"https:\/\/getdevdone.com\/contact-us.html\" target=\"_blank\" rel=\"noreferrer noopener\"><em>Contact<\/em><\/a><em> us for any WordPress-related task, from building brand-new custom themes or customizing existing ones to page load speed optimization and security.<\/em><\/p>\n\n\n\n<p><em>Helping your business succeed is our top priority!<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this post, you will learn how to customize your WordPress dashboard manually, thus avoiding the plugin hell issues. <\/p>\n","protected":false},"author":6,"featured_media":11813,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"advgb_blocks_editor_width":"","advgb_blocks_columns_visual_guide":"","footnotes":""},"categories":[740,752],"tags":[774,760,822,814],"class_list":["post-11528","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorial","category-wordpress-development","tag-cms-development","tag-custom-development","tag-php","tag-wordpress"],"acf":[],"aioseo_notices":[],"author_meta":{"display_name":"Valerie Muradian","author_link":"https:\/\/getdevdone.com\/blog\/author\/valeri"},"featured_img":"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/12\/01113933\/customize_wordpress_dashboard-300x259.png","coauthors":[],"tax_additional":{"categories":{"linked":["<a href=\"https:\/\/getdevdone.com\/blog\/category\/tutorial\" class=\"advgb-post-tax-term\">Tutorial<\/a>","<a href=\"https:\/\/getdevdone.com\/blog\/category\/wordpress-development\" class=\"advgb-post-tax-term\">WordPress development<\/a>"],"unlinked":["<span class=\"advgb-post-tax-term\">Tutorial<\/span>","<span class=\"advgb-post-tax-term\">WordPress development<\/span>"]},"tags":{"linked":["<a href=\"https:\/\/getdevdone.com\/blog\/category\/wordpress-development\" class=\"advgb-post-tax-term\">CMS development<\/a>","<a href=\"https:\/\/getdevdone.com\/blog\/category\/wordpress-development\" class=\"advgb-post-tax-term\">Custom development<\/a>","<a href=\"https:\/\/getdevdone.com\/blog\/category\/wordpress-development\" class=\"advgb-post-tax-term\">PHP<\/a>","<a href=\"https:\/\/getdevdone.com\/blog\/category\/wordpress-development\" class=\"advgb-post-tax-term\">WordPress<\/a>"],"unlinked":["<span class=\"advgb-post-tax-term\">CMS development<\/span>","<span class=\"advgb-post-tax-term\">Custom development<\/span>","<span class=\"advgb-post-tax-term\">PHP<\/span>","<span class=\"advgb-post-tax-term\">WordPress<\/span>"]}},"comment_count":"0","relative_dates":{"created":"Posted 4 years ago","modified":"Updated 3 years ago"},"absolute_dates":{"created":"Posted on December 8, 2021","modified":"Updated on November 28, 2022"},"absolute_dates_time":{"created":"Posted on December 8, 2021 5:04 pm","modified":"Updated on November 28, 2022 2:34 pm"},"featured_img_caption":"","series_order":"","featured_image_urls":{"thumbnail_723x315":"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/12\/01113933\/customize_wordpress_dashboard.png","thumbnail_723x315-2x":"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/12\/01113933\/customize_wordpress_dashboard.png","thumbnail_723x315-3x":"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/12\/01113933\/customize_wordpress_dashboard.png","thumbnail_770x510":"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/12\/01113933\/customize_wordpress_dashboard.png","thumbnail_770x510-2x":"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/12\/01113933\/customize_wordpress_dashboard.png","thumbnail_770x510-3x":"https:\/\/s3.amazonaws.com\/newblog.psd2html.com\/wp-content\/uploads\/2021\/12\/01113933\/customize_wordpress_dashboard.png"},"featured_post_color":"#9056e0","author_avatar":"https:\/\/secure.gravatar.com\/avatar\/5beb6f0817cc101d7122d201f933d94a4c68077bd00f26e4a1771c421a6b2fab?s=96&d=mm&r=g","author_position":"Web Developer & Content Writer","reading_time":"<span class=\"span-reading-time rt-reading-time\"><span class=\"rt-label rt-prefix\"><\/span> <span class=\"rt-time\"> 6<\/span> <span class=\"rt-label rt-postfix\">min read<\/span><\/span>","prev_post":{"slug":"how-to-fix-http-error-when-uploading-images-in-wordpress","name":"7 Methods to Fix the http Error When Uploading Images in WordPress"},"next_post":{"slug":"how-to-backup-wordpress","name":"How to Backup WordPress"},"related_posts":["how-to-create-a-custom-landing-page-for-your-facebook-page","redeveloping-soljets-outdated-website-wordpress","convert-figma-to-html-beginners-guide"],"_links":{"self":[{"href":"https:\/\/getdevdone.com\/blog\/wp-json\/wp\/v2\/posts\/11528","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/getdevdone.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/getdevdone.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/getdevdone.com\/blog\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/getdevdone.com\/blog\/wp-json\/wp\/v2\/comments?post=11528"}],"version-history":[{"count":56,"href":"https:\/\/getdevdone.com\/blog\/wp-json\/wp\/v2\/posts\/11528\/revisions"}],"predecessor-version":[{"id":24624,"href":"https:\/\/getdevdone.com\/blog\/wp-json\/wp\/v2\/posts\/11528\/revisions\/24624"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/getdevdone.com\/blog\/wp-json\/wp\/v2\/media\/11813"}],"wp:attachment":[{"href":"https:\/\/getdevdone.com\/blog\/wp-json\/wp\/v2\/media?parent=11528"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/getdevdone.com\/blog\/wp-json\/wp\/v2\/categories?post=11528"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/getdevdone.com\/blog\/wp-json\/wp\/v2\/tags?post=11528"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}