{"id":63094,"date":"2020-07-27T14:28:54","date_gmt":"2020-07-27T08:58:54","guid":{"rendered":"https:\/\/git-staging.wpastra.com\/?post_type=docs&#038;p=63094"},"modified":"2024-02-09T16:32:33","modified_gmt":"2024-02-09T11:02:33","slug":"change-footer-widget-title-heading-tag","status":"publish","type":"docs","link":"https:\/\/git-staging.wpastra.com\/es\/docs\/change-footer-widget-title-heading-tag\/","title":{"rendered":"Cambiar la etiqueta de t\u00edtulo del widget de pie de p\u00e1gina"},"content":{"rendered":"<p>Para mejorar la jerarqu\u00eda visual de sus widgets de pie de p\u00e1gina y asegurarse de que se integran perfectamente con el dise\u00f1o de su sitio web, es esencial personalizar las etiquetas de encabezado del t\u00edtulo para el widget de pie de p\u00e1gina. <\/p>\n\n\n\n<p>Ajustando estas etiquetas, puede mantener una apariencia organizada en todo el dise\u00f1o de su sitio. <\/p>\n\n\n\n<p>Esta completa gu\u00eda le proporcionar\u00e1 un recorrido paso a paso, simplificando el proceso de modificaci\u00f3n de las etiquetas de encabezado de los t\u00edtulos de los widgets de pie de p\u00e1gina para que se ajusten perfectamente al dise\u00f1o deseado.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><a href=\"https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2020\/07\/ast-footer-default-heading-tag-new.png\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1688\" height=\"825\" src=\"https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2020\/07\/ast-footer-default-heading-tag-new.png\" alt=\"Astra Footer Default Heading Tag New\" class=\"wp-image-63101\" srcset=\"https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2020\/07\/ast-footer-default-heading-tag-new.png 1688w, https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2020\/07\/ast-footer-default-heading-tag-new-300x147.png 300w, https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2020\/07\/ast-footer-default-heading-tag-new-1024x500.png 1024w, https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2020\/07\/ast-footer-default-heading-tag-new-768x375.png 768w, https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2020\/07\/ast-footer-default-heading-tag-new-1536x751.png 1536w\" sizes=\"(max-width: 1688px) 100vw, 1688px\" \/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>C\u00f3mo cambiar la etiqueta de t\u00edtulo del widget de pie de p\u00e1gina<\/strong><\/h3>\n\n\n\n<p>Si desea cambiar la etiqueta de t\u00edtulo del widget de pie de p\u00e1gina, puede utilizar el siguiente c\u00f3digo personalizado. A\u00f1ada el c\u00f3digo de filtro correspondiente en el campo <a aria-label=\"Si desea cambiar esta etiqueta de encabezado utilice el siguiente c\u00f3digo personalizado. A\u00f1ada el c\u00f3digo en el archivo functions.php del tema hijo.  (se abre en una nueva pesta\u00f1a)\" href=\"https:\/\/git-staging.wpastra.com\/es\/docs\/add-custom-php-code\/\" target=\"_blank\" rel=\"noreferrer noopener\">functions.php del tema hijo<\/a> archivo.\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>\/\/ Footer Widget 1\nadd_filter( 'astra_advanced_footer_widget_1_args', 'widget_title_footer_1_tag', 10, 1 );\n\nfunction widget_title_footer_1_tag( $atts ) {\n    $atts&#91;'before_title'] = '&lt;h1 class=\"widget-title\"&gt;';\n    $atts&#91;'after_title'] = '&lt;\/h1&gt;';\n    return $atts;\n}\n\n\/\/ Footer Widget 2\nadd_filter( 'astra_advanced_footer_widget_2_args', 'widget_title_footer_2_tag', 10, 1 );\n\nfunction widget_title_footer_2_tag( $atts ) {\n    $atts&#91;'before_title'] = '&lt;h3 class=\"widget-title\"&gt;';\n    $atts&#91;'after_title'] = '&lt;\/h3&gt;';\n    return $atts;\n}\n\n\/\/ Footer Widget 3\nadd_filter( 'astra_advanced_footer_widget_3_args', 'widget_title_footer_3_tag', 10, 1 );\n\nfunction widget_title_footer_3_tag( $atts ) {\n    $atts&#91;'before_title'] = '&lt;h4 class=\"widget-title\"&gt;';\n    $atts&#91;'after_title'] = '&lt;\/h4&gt;';\n    return $atts;\n}\n\n\/\/ Footer Widget 4\nadd_filter( 'astra_advanced_footer_widget_4_args', 'widget_title_footer_4_tag', 10, 1 );\n\nfunction widget_title_footer_4_tag( $atts ) {\n    $atts&#91;'before_title'] = '&lt;p class=\"widget-title\"&gt;';\n    $atts&#91;'after_title'] = '&lt;\/p&gt;';\n    return $atts;\n}\n\n\/\/ Footer Widget 5\nadd_filter( 'astra_advanced_footer_widget_5_args', 'widget_title_footer_5_tag', 10, 1 );\n\nfunction widget_title_footer_5_tag( $atts ) {\n    $atts&#91;'before_title'] = '&lt;div class=\"widget-title\"&gt;';\n    $atts&#91;'after_title'] = '&lt;\/div&gt;';\n    return $atts;\n}<\/code><\/pre>\n\n\n\n<p>Puede elegir el filtro que desee para el widget correspondiente y actualizar la etiqueta seg\u00fan sus necesidades.<\/p>\n\n\n\n<p>Por ejemplo, si desea actualizar el t\u00edtulo del widget Tercer pie de p\u00e1gina, deber\u00e1 copiar el c\u00f3digo que aparece a continuaci\u00f3n y pegarlo en el archivo functions.php de su tema hijo.<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>add_filter( 'astra_advanced_footer_widget_3_args', 'widget_title_footer_3_tag', 10, 1 );\n\nfunction widget_title_footer_3_tag( $atts ) {\n    $atts&#91;'before_title'] = '&lt;h4 class=\"widget-title\"&gt;';\n    $atts&#91;'after_title'] = '&lt;\/h4&gt;';\n    return $atts;\n}<\/code><\/pre>\n\n\n\n<div class=\"wp-block-uagb-inline-notice uagb-inline_notice__align-left uagb-block-e69b45d0\"><button class=\"uagb-notice-close-button\" type=\"button\" aria-label=\"Cerrar\"><\/button><h4 class=\"uagb-notice-title\">Nota:<\/h4><div class=\"uagb-notice-text\"><p>Si ha creado el pie de p\u00e1gina utilizando el constructor de pie de p\u00e1gina del constructor de pie de p\u00e1gina de cabecera, utilice el c\u00f3digo siguiente -<\/p><\/div><\/div>\n\n\n\n<p><\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>add_filter( 'astra_footer_widget_1args', 'widget_title_footer_1_tag', 10, 1 );\n\n\nfunction widget_title_footer_1_tag( $atts ) {\n    $atts&#91;'before_title'] = '&lt;h1 class=\"widget-title\"&gt;';\n    $atts&#91;'after_title'] = '&lt;\/h1&gt;';\n    return $atts;\n}<\/code><\/pre>\n\n\n\n<div class=\"wp-block-uagb-inline-notice uagb-inline_notice__align-left uagb-block-b934eea0\"><button class=\"uagb-notice-close-button\" type=\"button\" aria-label=\"Cerrar\"><\/button><h4 class=\"uagb-notice-title\">Nota:<\/h4><div class=\"uagb-notice-text\"><p>Tenga en cuenta que debe elegir el filtro correcto con el n\u00famero y actualizar las etiquetas de encabezado seg\u00fan sea necesario.\u00a0<strong><a href=\"https:\/\/git-staging.wpastra.com\/es\/docs\/add-custom-php-code\/#3.-in-child-theme\">\u00bfC\u00f3mo a\u00f1adir c\u00f3digo PHP personalizado?<\/a><\/strong> <\/p><\/div><\/div>","protected":false},"excerpt":{"rendered":"<p>Para mejorar la jerarqu\u00eda visual de tus widgets de pie de p\u00e1gina y asegurarte de que se integran perfectamente con el dise\u00f1o de tu sitio web, es esencial personalizar las etiquetas de encabezado del t\u00edtulo para el widget de pie de p\u00e1gina. Al ajustar estas etiquetas, puedes mantener una apariencia organizada en todo el dise\u00f1o de tu sitio. Esta completa gu\u00eda le proporcionar\u00e1 un recorrido paso a paso, simplificando el proceso de modificaci\u00f3n de [...]<\/p>","protected":false},"author":39,"featured_media":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"default","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"docs_category":[2110],"docs_tag":[],"class_list":{"0":"post-63094","1":"docs","2":"type-docs","3":"status-publish","5":"docs_category-astra-header-footer-filters"},"spectra_custom_meta":{"_wp_old_slug":[""],"_wp_page_template":["default"],"wpil_sync_report3":["1"],"wpil_links_inbound_internal_count":["0"],"wpil_links_inbound_internal_count_data":["a:0:{}"],"wpil_links_outbound_internal_count":["2"],"wpil_links_outbound_internal_count_data":["a:2:{i:0;a:9:{s:3:\"url\";s:82:\"https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2019\/08\/ast-2-heading-title.png\";s:8:\"url_real\";s:82:\"https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2019\/08\/ast-2-heading-title.png\";s:4:\"host\";s:11:\"wpastra.com\";s:9:\"host_real\";s:11:\"wpastra.com\";s:8:\"internal\";b:1;s:7:\"post_id\";i:0;s:6:\"anchor\";s:125:\"<img src=\"https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2019\/08\/ast-2-heading-title.png\" alt=\"\" class=\"wp-image-39849\"\/>\";s:15:\"added_by_plugin\";b:0;s:10:\"post_title\";s:0:\"\";}i:1;a:9:{s:3:\"url\";s:57:\"https:\/\/git-staging.wpastra.com\/docs\/add-custom-php-code\/\";s:8:\"url_real\";s:57:\"https:\/\/git-staging.wpastra.com\/docs\/add-custom-php-code\/\";s:4:\"host\";s:11:\"wpastra.com\";s:9:\"host_real\";s:11:\"wpastra.com\";s:8:\"internal\";b:1;s:7:\"post_id\";i:0;s:6:\"anchor\";s:27:\"child theme's functions.php\";s:15:\"added_by_plugin\";b:0;s:10:\"post_title\";s:0:\"\";}}"],"wpil_links_outbound_external_count":["0"],"wpil_links_outbound_external_count_data":["a:0:{}"],"wpil_sync_report2_time":["2019-08-28T08:19:44+00:00"],"_ppc_meta_key":["a:8:{s:20:\"ppc_key5d92f85d42273\";s:60:\"Images &amp; Names Correctly. Title &amp; Alt Tags are Given\";s:8:\"ppc_key4\";s:15:\"Formatting Done\";s:8:\"ppc_key2\";s:23:\"Featured Image Assigned\";s:8:\"ppc_key3\";s:17:\"Category Selected\";s:8:\"ppc_key5\";s:15:\"Title is Catchy\";s:8:\"ppc_key6\";s:22:\"Social Images Assigned\";s:8:\"ppc_key7\";s:8:\"Done SEO\";s:8:\"ppc_key8\";s:28:\"Spelling and Grammar Checked\";}"],"onesignal_meta_box_present":["1"],"onesignal_send_notification":[""],"tap_disable_autolinker":["no"],"tap_autolink_inside_heading":["global"],"tap_autolink_random_placement":["global"],"tap_post_autolinker_limit":["0"],"site-sidebar-layout":["default"],"site-content-layout":["default"],"theme-transparent-header-meta":["default"],"_yoast_wpseo_title":["How to Change the Heading Tag for the Footer Widget Title in Astra?"],"_yoast_wpseo_content_score":["90"],"_dp_original":["30157"],"_edit_last":["89"],"_edit_lock":["1707713833:89"],"_yoast_wpseo_estimated-reading-time-minutes":["2"],"_ht_kb_post_views_count":["7"],"_ht_kb_usefulness":["0"],"_ht_article_order_103":["63094"],"wp_last_modified_info":["February 24, 2022 @ 1:48 AM"],"wplmi_shortcode":["[lmt-post-modified-info]"],"views":["6444"],"helpful":["1"],"unhelpful":["6"],"redirects":["1"],"_lmt_disableupdate":["no"],"_wplmi_last_modified":["2021-09-08 21:16:37"],"rank_math_title":["How to Change the Heading Tag for the Footer Widget Title in Astra?"],"rank_math_news_sitemap_robots":["index"],"rank_math_robots":["a:1:{i:0;s:5:\"index\";}"],"rank_math_analytic_object_id":["589"],"rank_math_seo_score":["14"],"rank_math_internal_links_processed":["1"],"rank_math_og_content_image":["a:2:{s:5:\"check\";s:32:\"015a0af4d9a4662d2f7d285798ec1471\";s:6:\"images\";a:1:{i:0;i:63101;}}"],"_trp_automatically_translated_slug_es_ES":["cambiar-el-titulo-del-widget-de-pie-de-pagina"],"rank_math_primary_docs_category":["2110"],"_uag_custom_page_level_css":[""],"ast-site-content-layout":["default"],"adv-header-id-meta":[""],"stick-header-meta":[""],"astra-migrate-meta-layouts":["set"],"pfd_related_docs":[""],"_uag_page_assets":["a:9:{s:3:\"css\";s:4877:\" .uagb-block-e69b45d0.wp-block-uagb-inline-notice .uagb-notice-title{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;} .uagb-block-e69b45d0 .uagb-notice-text{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;background-color: #fff8e1;border: 2px solid #fdf4c9;border-bottom-left-radius: 3px;border-bottom-right-radius: 3px;} .uagb-block-e69b45d0.uagb-dismissable button[type=\"button\"] svg{width: 16px;height: 16px;} .uagb-block-e69b45d0.uagb-dismissable > svg{width: 16px;height: 16px;} .uagb-block-e69b45d0 .uagb-notice-title{background-color: #fdf4c9;border-top-right-radius: 3px;border-top-left-radius: 3px;} .uagb-block-b934eea0.wp-block-uagb-inline-notice .uagb-notice-title{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;} .uagb-block-b934eea0 .uagb-notice-text{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;background-color: #fff8e1;border: 2px solid #fdf4c9;border-bottom-left-radius: 3px;border-bottom-right-radius: 3px;} .uagb-block-b934eea0.uagb-dismissable button[type=\"button\"] svg{width: 16px;height: 16px;} .uagb-block-b934eea0.uagb-dismissable > svg{width: 16px;height: 16px;} .uagb-block-b934eea0 .uagb-notice-title{background-color: #fdf4c9;border-top-right-radius: 3px;border-top-left-radius: 3px;}@media only screen and (max-width: 976px) { .uagb-block-e69b45d0 .uagb-notice-text{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;} .uagb-block-e69b45d0 .uagb-notice-title{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;} .uagb-block-b934eea0 .uagb-notice-text{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;} .uagb-block-b934eea0 .uagb-notice-title{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;}}@media only screen and (max-width: 767px) { .uagb-block-e69b45d0 .uagb-notice-text{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;} .uagb-block-e69b45d0 .uagb-notice-title{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;} .uagb-block-b934eea0 .uagb-notice-text{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;} .uagb-block-b934eea0 .uagb-notice-title{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;}}.wp-block-uagb-container.uagb-block-debf2792 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-debf2792 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-debf2792 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-debf2792 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-debf2792 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-debf2792{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-debf2792 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-debf2792{box-shadow: 0px 0px   #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;overflow: visible;border-color: inherit;row-gap: 0px;column-gap: 0px;}@media only screen and (max-width: 976px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-debf2792{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-debf2792 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-debf2792{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;}}@media only screen and (max-width: 767px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-debf2792{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-debf2792 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-debf2792{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;}}\";s:2:\"js\";s:480:\"document.addEventListener(\"DOMContentLoaded\", function(){ window.addEventListener( 'DOMContentLoaded', function() {\n\tUAGBInlineNotice.init( {\"c_id\":null,\"cookies\":false,\"close_cookie_days\":1,\"noticeDismiss\":\"\",\"icon\":\"rectangle-xmark\"}, '.uagb-block-e69b45d0' );\n});\nwindow.addEventListener( 'DOMContentLoaded', function() {\n\tUAGBInlineNotice.init( {\"c_id\":null,\"cookies\":false,\"close_cookie_days\":1,\"noticeDismiss\":\"\",\"icon\":\"rectangle-xmark\"}, '.uagb-block-b934eea0' );\n});\n });\";s:18:\"current_block_list\";a:7:{i:0;s:14:\"core\/paragraph\";i:1;s:10:\"core\/image\";i:2;s:12:\"core\/heading\";i:3;s:9:\"core\/code\";i:4;s:18:\"uagb\/inline-notice\";i:5;s:14:\"uagb\/container\";i:6;s:14:\"core\/shortcode\";}s:8:\"uag_flag\";b:1;s:11:\"uag_version\";s:10:\"1776568404\";s:6:\"gfonts\";a:0:{}s:10:\"gfonts_url\";s:0:\"\";s:12:\"gfonts_files\";a:0:{}s:14:\"uag_faq_layout\";b:0;}"]},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"trp-custom-language-flag":false},"uagb_author_info":{"display_name":"Suman","author_link":"https:\/\/git-staging.wpastra.com\/es\/author\/sumand\/"},"uagb_comment_info":0,"uagb_excerpt":"To enhance the visual hierarchy of your footer widgets and ensure they seamlessly integrate with your website&#8217;s design, customizing the title&#8217;s heading tags for footer widget is essential. By adjusting these tags, you can maintain an organized appearance throughout your site&#8217;s layout. This comprehensive guide will provide a step-by-step walkthrough, simplifying the process of modifying&hellip;","_links":{"self":[{"href":"https:\/\/git-staging.wpastra.com\/es\/wp-json\/wp\/v2\/docs\/63094"}],"collection":[{"href":"https:\/\/git-staging.wpastra.com\/es\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/git-staging.wpastra.com\/es\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/git-staging.wpastra.com\/es\/wp-json\/wp\/v2\/users\/39"}],"replies":[{"embeddable":true,"href":"https:\/\/git-staging.wpastra.com\/es\/wp-json\/wp\/v2\/comments?post=63094"}],"version-history":[{"count":0,"href":"https:\/\/git-staging.wpastra.com\/es\/wp-json\/wp\/v2\/docs\/63094\/revisions"}],"wp:attachment":[{"href":"https:\/\/git-staging.wpastra.com\/es\/wp-json\/wp\/v2\/media?parent=63094"}],"wp:term":[{"taxonomy":"docs_category","embeddable":true,"href":"https:\/\/git-staging.wpastra.com\/es\/wp-json\/wp\/v2\/docs_category?post=63094"},{"taxonomy":"docs_tag","embeddable":true,"href":"https:\/\/git-staging.wpastra.com\/es\/wp-json\/wp\/v2\/docs_tag?post=63094"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}