{"id":11933,"date":"2025-08-07T08:34:50","date_gmt":"2025-08-07T06:34:50","guid":{"rendered":"https:\/\/webhosting.de\/wordpress-datenbank-optimieren-wpoptions-tipps-datenpflege\/"},"modified":"2025-08-07T08:34:50","modified_gmt":"2025-08-07T06:34:50","slug":"wordpress-database-optimization-wpoptions-tips-data-maintenance","status":"publish","type":"post","link":"https:\/\/webhosting.de\/en\/wordpress-datenbank-optimieren-wpoptions-tipps-datenpflege\/","title":{"rendered":"Optimize WordPress database: effectively streamline wp_options and co."},"content":{"rendered":"<p>The <strong>Optimize WordPress database<\/strong> means much more than just freeing up memory - the wp_options table in particular deserves attention. Regularly tidying it up speeds up loading times, increases reliability and noticeably improves the SEO ranking of your site. In addition, a well-maintained database also protects against potential security vulnerabilities that can arise from outdated or unused entries. Such entries are often dragged along unnoticed during plugin or theme updates - an inconspicuous vulnerability that has a negative impact on the overall performance of the website in the long term.<\/p>\n\n<h2>Key points<\/h2>\n<ul>\n  <li><strong>wp_options<\/strong> contains many legacy plugins and themes that should be removed manually.<\/li>\n  <li>Unnecessary <strong>autoloaded data<\/strong> slow down every page view considerably.<\/li>\n  <li><strong>Backups<\/strong> are mandatory before any database customization - security first.<\/li>\n  <li>With the help of plugins or <strong>WP-CLI<\/strong> the cleanup can be automated.<\/li>\n  <li>Regular <strong>Database maintenance<\/strong> reduces downtime and hosting costs.<\/li>\n<\/ul>\n\n\n<figure class=\"wp-block-image size-full is-resized\">\n  <img fetchpriority=\"high\" decoding=\"async\" src=\"https:\/\/webhosting.de\/wp-content\/uploads\/2025\/08\/wordpress-optimierung-8273.webp\" alt=\"\" width=\"1536\" height=\"1024\"\/>\n<\/figure>\n\n\n<h2>Why the wp_options table quickly becomes a brake<\/h2>\n\nThe wp_options table is one of the central structures in every WordPress database. This is where configurations of WordPress itself, themes and plugins are stored. It becomes problematic when plugins are uninstalled but their entries remain. So-called <strong>autoloaded Options<\/strong> are automatically loaded each time the page is called up - even if they are no longer required.\n\nFor larger sites or WooCommerce installations, hundreds of these entries can take up several megabytes of memory. As a result, the server needs more time to render pages at high cost. A regular database check therefore saves performance, time and money. In addition, unnecessary entries also contribute to a greater security risk, as interdependent data fragments can quickly lead to incompatibilities. Even a small delay can lead to a noticeable loss of sales, especially for highly frequented e-commerce sites.\n\nIf you regularly test new themes or install several plugins, you should pay particular attention to the wp_options table. It is not uncommon for entries to be created whose use is only relevant during the setup process. However, complete removal by the plugin or theme is not always guaranteed. This may seem unimportant at first glance, but leads to considerable performance losses in the long term. \n\n<h2>Safety check before tidying up<\/h2>\n\nBefore you change anything, create a full backup of your WordPress site. I recommend a full backup including database and file structure.\n\nUse for this:\n<ul>\n  <li>A plugin such as Duplicator, UpdraftPlus or All-in-One WP Migration<\/li>\n  <li>The backup service of your hoster<\/li>\n  <li>Manual export with phpMyAdmin + FTP download of your files<\/li>\n<\/ul>\n\nOnly with a fresh backup can an error be reversed in an emergency. If you forget to do this, you risk irreparable damage to the site. Also make sure that you have recovery instructions to hand in an emergency. Many users create backups but don't know how to restore them when they need to. It helps to note down in the team or in documentation exactly which steps need to be carried out in an emergency.\n\n\n<figure class=\"wp-block-image size-full is-resized\">\n  <img decoding=\"async\" src=\"https:\/\/webhosting.de\/wp-content\/uploads\/2025\/08\/wordpress-optimierung-8461.webp\" alt=\"\" width=\"1536\" height=\"1024\"\/>\n<\/figure>\n\n\n<h2>Clean up database with plugin<\/h2>\n\nFor beginners, I recommend a plugin such as \"Advanced Database Cleaner\". This allows you to analyze and remove unused entries from the wp_options table. After installation, the plugin shows you a list of orphaned options, old cronjobs and autoload values.\n\nProcedure:\n<ol>\n  <li>Install the plugin via the admin menu.<\/li>\n  <li>Go to the plugin interface.<\/li>\n  <li>Analyze the wp_options table and look at the list of obsolete entries.<\/li>\n  <li>Select the options to be deleted and carry out the cleanup.<\/li>\n<\/ol>\n\nThe plugin also lists tables that belong to deleted plugins. If desired, it also shows which plugins or themes certain entries relate to. This makes it easier to decide for or against deletion. You can also set the tool to clean up automatically at regular intervals. This means you don't have to keep checking manually, but will be informed if new clutter appears. Nevertheless, it is advisable to keep an eye on the autoload entries, as not every plugin reliably distinguishes between required and superfluous data.\n\n<h2>Manual cleaning via phpMyAdmin<\/h2>\n\nUsers with experience can access the database directly, for example via phpMyAdmin. There, every entry in wp_options can be checked in detail and deleted. This method is recommended for sites with many specific customizations where plugins would delete too much.\n\nSearch patterns like <code>option_name LIKE '%pluginname%'<\/code> help with the search for legacy data. Alternatively, you can make all automatically loaded options visible with :\n\n<pre><code>SELECT * FROM wp_options WHERE autoload = 'yes';\n<\/code><\/pre>\n\nThe more superfluous or orphaned options you remove, the faster WordPress can work again. Note that manual interventions require extreme caution. An incorrectly deleted option entry can impair the functionality of your theme or plugin. Therefore, document exactly which changes you make. Especially with very large databases, it is important to proceed systematically and gradually in order to maintain the stability of the website.\n\n\n<figure class=\"wp-block-image size-full is-resized\">\n  <img decoding=\"async\" src=\"https:\/\/webhosting.de\/wp-content\/uploads\/2025\/08\/wordpress-datenbank-optimieren-3241.webp\" alt=\"\" width=\"1536\" height=\"1024\"\/>\n<\/figure>\n\n\n<h2>WP-CLI: Quick cleanup for professionals<\/h2>\n\nWP-CLI is perfect for professionals and admins who carry out routine work via the command line. This method works quickly, reliably and is easy to automate. WP-CLI offers, among other things:\n\n<ul>\n  <li>Delete individual options: <code>wp option delete option_name<\/code><\/li>\n  <li>Remove orphaned options: <code>wp option clean<\/code><\/li>\n<\/ul>\n\nIdeal if you regularly have to maintain several pages. WP-CLI reduces human error by running automated scripts independently of user interfaces. Another advantage: you can create a sequence of commands, for example to generate a backup first, then perform the cleanup action and finally run a quick database integrity check. In this way, a maintenance plan is implemented efficiently and consistently.\n\nExperienced users often combine WP-CLI with CRON jobs directly on the server. This allows you to run scheduled routines without having to log in every time. This is particularly useful if you manage many WordPress instances or want to carry out certain optimizations at regular intervals. \n\n\n<figure class=\"wp-block-image size-full is-resized\">\n  <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/webhosting.de\/wp-content\/uploads\/2025\/08\/wordpress-optimierung-1234.webp\" alt=\"\" width=\"1536\" height=\"1024\"\/>\n<\/figure>\n\n\n<h2>Further effective measures for optimization<\/h2>\n\nIn addition to cleaning up the wp_options table, there are other strategies for streamlining the database - especially in the long term. A regular review pays off several times over.\n\nTypical memory offenders:\n\n<table>\n  <thead>\n    <tr>\n      <th>Database element<\/th>\n      <th>Cause<\/th>\n      <th>Adjustment method<\/th>\n    <\/tr>\n  <\/thead>\n  <tbody>\n    <tr>\n      <td>Orphaned tables<\/td>\n      <td>Uninstalled plugins<\/td>\n      <td>phpMyAdmin, Advanced Database Cleaner<\/td>\n    <\/tr>\n    <tr>\n      <td>Post-revision<\/td>\n      <td>Frequently edited posts<\/td>\n      <td>WP-CLI, Plugins<\/td>\n    <\/tr>\n    <tr>\n      <td>Transients<\/td>\n      <td>Temporary plugin data<\/td>\n      <td>Delete regularly<\/td>\n    <\/tr>\n    <tr>\n      <td>Spam comments<\/td>\n      <td>Bot attacks &amp; outdated content<\/td>\n      <td>Comment management \/ Plugin<\/td>\n    <\/tr>\n    <tr>\n      <td>Pingbacks\/Trackbacks<\/td>\n      <td>Useless hints from other sites<\/td>\n      <td>Deactivate and delete<\/td>\n    <\/tr>\n  <\/tbody>\n<\/table>\n\nThese measures speed up queries and significantly reduce database volumes. Post revisions in particular are often underestimated. If you write creatively and keep creating intermediate saves, you can quickly accumulate several hundred revisions per post. This leads to a confusing database that is almost impossible to search through manually. Set a limit for post revisions in wp-config.php or delete older versions as required.\n\nTransients can also accumulate quickly if plugins are configured incorrectly or set cache entries too frequently. They are generally used to temporarily store certain function results, but over time many expired transients accumulate. Regular removal ensures that your database does not become clogged with irrelevant cache data. \n\n<h2>Hosting as a bottleneck or solution<\/h2>\n\nThe infrastructure of your hosting provider has a direct impact on the performance of your database - especially with larger data volumes. Providers with modern server technology, SSD storage and optimized caching get more out of every request.\n\nMarket comparisons show differences not only in the resources on offer, but also in the support and backup concept:\n\n<table>\n  <thead>\n    <tr>\n      <th>Place<\/th>\n      <th>Provider<\/th>\n      <th>Special features<\/th>\n    <\/tr>\n  <\/thead>\n  <tbody>\n    <tr>\n      <td>1<\/td>\n      <td>webhoster.de<\/td>\n      <td>Optimized database performance, fully automatic backups<\/td>\n    <\/tr>\n    <tr>\n      <td>2<\/td>\n      <td>Provider Y<\/td>\n      <td>Solid performance, limited support<\/td>\n    <\/tr>\n    <tr>\n      <td>3<\/td>\n      <td>Provider Z<\/td>\n      <td>Limited database optimization options<\/td>\n    <\/tr>\n  <\/tbody>\n<\/table>\n\nStrong hosting makes maintenance easier, reduces the error rate and speeds up your site noticeably. For very large projects, such as online stores with thousands of products or heavily visited content portals, the right hosting can even be crucial for smooth day-to-day operation. Also bear in mind that some hostings offer special caching mechanisms or even an integrated server configuration that is specially adapted to WordPress. This not only relieves the burden on administrators, but also increases security by allowing updates and optimization tools to be managed centrally.\n\n\n<figure class=\"wp-block-image size-full is-resized\">\n  <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/webhosting.de\/wp-content\/uploads\/2025\/08\/wordpress_datenbank_optimierung_8271.webp\" alt=\"\" width=\"1536\" height=\"1024\"\/>\n<\/figure>\n\n\n<h2>Regular maintenance is crucial<\/h2>\n\nIf you want WordPress to perform well in the long term, you need to maintain the database regularly. I recommend carrying out a major cleanup every quarter - including backups, autoload checks and plugin restoration. It's best to combine manual checks with plugin audits and occasional WP-CLI scripts.\n\nHelpful tips:\n<ul>\n  <li><strong>Backups<\/strong> Check weekly and restore as a test<\/li>\n  <li>Keep an eye on database size on a monthly basis<\/li>\n  <li>Evaluate extensions regularly and uninstall if unused<\/li>\n  <li>Document deletion processes and changes<\/li>\n<\/ul>\n\nThis mix saves you time in the long term, increases reliability and has a positive effect on SEO and user experience. A controversial backup and maintenance strategy is particularly useful for multilingual sites or complex membership models, as this can result in a particularly large number of database tables. Bilingual plugins, membership plugins or learning management systems (LMS) often generate numerous additional tables that you should keep an eye on.\n\nThe timing of maintenance also plays a role. It is advisable to carry out database maintenance outside of peak times. This way, possible performance losses during maintenance work are hardly noticeable and do not affect the visitor experience. \n\n\n<figure class=\"wp-block-image size-full is-resized\">\n  <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/webhosting.de\/wp-content\/uploads\/2025\/08\/wordpress-optimierung-4823.webp\" alt=\"\" width=\"1536\" height=\"1024\"\/>\n<\/figure>\n\n\n<h2>Database maintenance always pays off<\/h2>\n\nA tidy WordPress system runs faster, causes fewer errors and is more resistant to attacks. If you regularly optimize your database, you don't need to worry about Google Core Web Vitals or hosting moves. With the right combination of tools, experience and routine, maintenance becomes a minor matter - the effect remains visible in the long term.\n\nEspecially in times when loading times and user experience have a decisive influence on the success of a website, database maintenance can offer a decisive competitive advantage. Testing plugins or implementing new functions is much more relaxed if outdated data has been thoroughly removed beforehand. Even major relaunches are much easier because the basic structure can be migrated cleanly and quickly.\n\nIn addition, a smaller data volume often also promotes a more cost-efficient hosting solution - so you don't pay for unnecessary ballast. At the same time, you minimize the risk of long-forgotten tables leading to security problems at some point. In this sense, database maintenance is one of the most effective steps to combine performance, security and sustainability.","protected":false},"excerpt":{"rendered":"<p>How to optimize your WordPress database: Tips for cleaning up wp_options and co. for more speed.<\/p>","protected":false},"author":1,"featured_media":11926,"comment_status":"","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_crdt_document":"","inline_featured_image":false,"footnotes":""},"categories":[781],"tags":[],"class_list":["post-11933","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-datenbanken-administration-anleitungen"],"acf":[],"_wp_attached_file":null,"_wp_attachment_metadata":null,"litespeed-optimize-size":null,"litespeed-optimize-set":null,"_elementor_source_image_hash":null,"_wp_attachment_image_alt":null,"stockpack_author_name":null,"stockpack_author_url":null,"stockpack_provider":null,"stockpack_image_url":null,"stockpack_license":null,"stockpack_license_url":null,"stockpack_modification":null,"color":null,"original_id":null,"original_url":null,"original_link":null,"unsplash_location":null,"unsplash_sponsor":null,"unsplash_exif":null,"unsplash_attachment_metadata":null,"_elementor_is_screenshot":null,"surfer_file_name":null,"surfer_file_original_url":null,"envato_tk_source_kit":null,"envato_tk_source_index":null,"envato_tk_manifest":null,"envato_tk_folder_name":null,"envato_tk_builder":null,"envato_elements_download_event":null,"_menu_item_type":null,"_menu_item_menu_item_parent":null,"_menu_item_object_id":null,"_menu_item_object":null,"_menu_item_target":null,"_menu_item_classes":null,"_menu_item_xfn":null,"_menu_item_url":null,"_trp_menu_languages":null,"rank_math_primary_category":null,"rank_math_title":null,"inline_featured_image":null,"_yoast_wpseo_primary_category":null,"rank_math_schema_blogposting":null,"rank_math_schema_videoobject":null,"_oembed_049c719bc4a9f89deaead66a7da9fddc":null,"_oembed_time_049c719bc4a9f89deaead66a7da9fddc":null,"_yoast_wpseo_focuskw":null,"_yoast_wpseo_linkdex":null,"_oembed_27e3473bf8bec795fbeb3a9d38489348":null,"_oembed_c3b0f6959478faf92a1f343d8f96b19e":null,"_trp_translated_slug_en_us":null,"_wp_desired_post_slug":null,"_yoast_wpseo_title":null,"tldname":null,"tldpreis":null,"tldrubrik":null,"tldpolicylink":null,"tldsize":null,"tldregistrierungsdauer":null,"tldtransfer":null,"tldwhoisprivacy":null,"tldregistrarchange":null,"tldregistrantchange":null,"tldwhoisupdate":null,"tldnameserverupdate":null,"tlddeletesofort":null,"tlddeleteexpire":null,"tldumlaute":null,"tldrestore":null,"tldsubcategory":null,"tldbildname":null,"tldbildurl":null,"tldclean":null,"tldcategory":null,"tldpolicy":null,"tldbesonderheiten":null,"tld_bedeutung":null,"_oembed_d167040d816d8f94c072940c8009f5f8":null,"_oembed_b0a0fa59ef14f8870da2c63f2027d064":null,"_oembed_4792fa4dfb2a8f09ab950a73b7f313ba":null,"_oembed_33ceb1fe54a8ab775d9410abf699878d":null,"_oembed_fd7014d14d919b45ec004937c0db9335":null,"_oembed_21a029d076783ec3e8042698c351bd7e":null,"_oembed_be5ea8a0c7b18e658f08cc571a909452":null,"_oembed_a9ca7a298b19f9b48ec5914e010294d2":null,"_oembed_f8db6b27d08a2bb1f920e7647808899a":null,"_oembed_168ebde5096e77d8a89326519af9e022":null,"_oembed_cdb76f1b345b42743edfe25481b6f98f":null,"_oembed_87b0613611ae54e86e8864265404b0a1":null,"_oembed_27aa0e5cf3f1bb4bc416a4641a5ac273":null,"_oembed_time_27aa0e5cf3f1bb4bc416a4641a5ac273":null,"_tldname":null,"_tldclean":null,"_tldpreis":null,"_tldcategory":null,"_tldsubcategory":null,"_tldpolicy":null,"_tldpolicylink":null,"_tldsize":null,"_tldregistrierungsdauer":null,"_tldtransfer":null,"_tldwhoisprivacy":null,"_tldregistrarchange":null,"_tldregistrantchange":null,"_tldwhoisupdate":null,"_tldnameserverupdate":null,"_tlddeletesofort":null,"_tlddeleteexpire":null,"_tldumlaute":null,"_tldrestore":null,"_tldbildname":null,"_tldbildurl":null,"_tld_bedeutung":null,"_tldbesonderheiten":null,"_oembed_ad96e4112edb9f8ffa35731d4098bc6b":null,"_oembed_8357e2b8a2575c74ed5978f262a10126":null,"_oembed_3d5fea5103dd0d22ec5d6a33eff7f863":null,"_eael_widget_elements":null,"_oembed_0d8a206f09633e3d62b95a15a4dd0487":null,"_oembed_time_0d8a206f09633e3d62b95a15a4dd0487":null,"_aioseo_description":null,"_eb_attr":null,"_eb_data_table":null,"_oembed_819a879e7da16dd629cfd15a97334c8a":null,"_oembed_time_819a879e7da16dd629cfd15a97334c8a":null,"_acf_changed":null,"_wpcode_auto_insert":null,"_edit_last":null,"_edit_lock":null,"_oembed_e7b913c6c84084ed9702cb4feb012ddd":null,"_oembed_bfde9e10f59a17b85fc8917fa7edf782":null,"_oembed_time_bfde9e10f59a17b85fc8917fa7edf782":null,"_oembed_03514b67990db061d7c4672de26dc514":null,"_oembed_time_03514b67990db061d7c4672de26dc514":null,"rank_math_news_sitemap_robots":null,"rank_math_robots":null,"_eael_post_view_count":"3533","_trp_automatically_translated_slug_ru_ru":null,"_trp_automatically_translated_slug_et":null,"_trp_automatically_translated_slug_lv":null,"_trp_automatically_translated_slug_fr_fr":null,"_trp_automatically_translated_slug_en_us":null,"_wp_old_slug":null,"_trp_automatically_translated_slug_da_dk":null,"_trp_automatically_translated_slug_pl_pl":null,"_trp_automatically_translated_slug_es_es":null,"_trp_automatically_translated_slug_hu_hu":null,"_trp_automatically_translated_slug_fi":null,"_trp_automatically_translated_slug_ja":null,"_trp_automatically_translated_slug_lt_lt":null,"_elementor_edit_mode":null,"_elementor_template_type":null,"_elementor_version":null,"_elementor_pro_version":null,"_wp_page_template":null,"_elementor_page_settings":null,"_elementor_data":null,"_elementor_css":null,"_elementor_conditions":null,"_happyaddons_elements_cache":null,"_oembed_75446120c39305f0da0ccd147f6de9cb":null,"_oembed_time_75446120c39305f0da0ccd147f6de9cb":null,"_oembed_3efb2c3e76a18143e7207993a2a6939a":null,"_oembed_time_3efb2c3e76a18143e7207993a2a6939a":null,"_oembed_59808117857ddf57e478a31d79f76e4d":null,"_oembed_time_59808117857ddf57e478a31d79f76e4d":null,"_oembed_965c5b49aa8d22ce37dfb3bde0268600":null,"_oembed_time_965c5b49aa8d22ce37dfb3bde0268600":null,"_oembed_81002f7ee3604f645db4ebcfd1912acf":null,"_oembed_time_81002f7ee3604f645db4ebcfd1912acf":null,"_elementor_screenshot":null,"_oembed_7ea3429961cf98fa85da9747683af827":null,"_oembed_time_7ea3429961cf98fa85da9747683af827":null,"_elementor_controls_usage":null,"_elementor_page_assets":[],"_elementor_screenshot_failed":null,"theplus_transient_widgets":null,"_eael_custom_js":null,"_wp_old_date":null,"_trp_automatically_translated_slug_it_it":null,"_trp_automatically_translated_slug_pt_pt":null,"_trp_automatically_translated_slug_zh_cn":null,"_trp_automatically_translated_slug_nl_nl":null,"_trp_automatically_translated_slug_pt_br":null,"_trp_automatically_translated_slug_sv_se":null,"rank_math_analytic_object_id":null,"rank_math_internal_links_processed":null,"_trp_automatically_translated_slug_ro_ro":null,"_trp_automatically_translated_slug_sk_sk":null,"_trp_automatically_translated_slug_bg_bg":null,"_trp_automatically_translated_slug_sl_si":null,"litespeed_vpi_list":["webhostinglogo.png"],"litespeed_vpi_list_mobile":["webhostinglogo.png"],"rank_math_seo_score":null,"rank_math_contentai_score":null,"ilj_limitincominglinks":null,"ilj_maxincominglinks":null,"ilj_limitoutgoinglinks":null,"ilj_maxoutgoinglinks":null,"ilj_limitlinksperparagraph":null,"ilj_linksperparagraph":null,"ilj_blacklistdefinition":null,"ilj_linkdefinition":null,"_eb_reusable_block_ids":null,"rank_math_focus_keyword":"WordPress Datenbank optimieren","rank_math_og_content_image":null,"_yoast_wpseo_metadesc":null,"_yoast_wpseo_content_score":null,"_yoast_wpseo_focuskeywords":null,"_yoast_wpseo_keywordsynonyms":null,"_yoast_wpseo_estimated-reading-time-minutes":null,"rank_math_description":null,"surfer_last_post_update":null,"surfer_last_post_update_direction":null,"surfer_keywords":null,"surfer_location":null,"surfer_draft_id":null,"surfer_permalink_hash":null,"surfer_scrape_ready":null,"_thumbnail_id":"11926","footnotes":null,"_links":{"self":[{"href":"https:\/\/webhosting.de\/en\/wp-json\/wp\/v2\/posts\/11933","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webhosting.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webhosting.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webhosting.de\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/webhosting.de\/en\/wp-json\/wp\/v2\/comments?post=11933"}],"version-history":[{"count":0,"href":"https:\/\/webhosting.de\/en\/wp-json\/wp\/v2\/posts\/11933\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webhosting.de\/en\/wp-json\/wp\/v2\/media\/11926"}],"wp:attachment":[{"href":"https:\/\/webhosting.de\/en\/wp-json\/wp\/v2\/media?parent=11933"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webhosting.de\/en\/wp-json\/wp\/v2\/categories?post=11933"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webhosting.de\/en\/wp-json\/wp\/v2\/tags?post=11933"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}