{"id":47155,"date":"2019-11-01T11:56:01","date_gmt":"2019-11-01T06:26:01","guid":{"rendered":"https:\/\/git-staging.wpastra.com\/?post_type=docs&#038;p=47155"},"modified":"2023-05-16T13:04:23","modified_gmt":"2023-05-16T07:34:23","slug":"remove-page-header-title","status":"publish","type":"docs","link":"https:\/\/git-staging.wpastra.com\/es\/docs\/remove-page-header-title\/","title":{"rendered":"\u00bfC\u00f3mo eliminar el t\u00edtulo del encabezado de p\u00e1gina?"},"content":{"rendered":"<p>Puede que alguna vez haya tenido la necesidad de eliminar el t\u00edtulo de la cabecera de la p\u00e1gina. Y anteriormente la \u00fanica opci\u00f3n era ocultar el mismo <a href=\"https:\/\/git-staging.wpastra.com\/es\/guides-and-tutorials\/custom-css-wordpress\/\" target=\"_blank\" rel=\"noreferrer noopener\">usando CSS personalizado<\/a>.<\/p>\n\n\n\n<p>Proporcionamos dos filtros. Uno para eliminar el t\u00edtulo del encabezado de la p\u00e1gina y otro para a\u00f1adir el t\u00edtulo de la p\u00e1gina en el \u00e1rea de contenido.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><a href=\"https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2019\/11\/ast-2-1-page-header-title.png\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1324\" height=\"700\" src=\"https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2019\/11\/ast-2-1-page-header-title.png\" alt=\"Astra Page Header Title\" class=\"wp-image-47164\" srcset=\"https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2019\/11\/ast-2-1-page-header-title.png 1324w, https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2019\/11\/ast-2-1-page-header-title-300x159.png 300w, https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2019\/11\/ast-2-1-page-header-title-768x406.png 768w, https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2019\/11\/ast-2-1-page-header-title-1024x541.png 1024w\" sizes=\"(max-width: 1324px) 100vw, 1324px\" \/><\/a><\/figure>\n\n\n\n<p>Sumerj\u00e1monos en ambos casos y veamos el filtro sobre c\u00f3mo funcionar\u00e1 -<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Caso 1:<\/strong><\/h3>\n\n\n\n<p>C\u00f3mo eliminar el t\u00edtulo de cabecera de p\u00e1gina que aparece en la parte superior de la imagen. Aqu\u00ed, puedes eliminar el T\u00edtulo de Cabecera de P\u00e1gina en todas las p\u00e1ginas individuales, p\u00e1ginas de archivo y entradas. Alternativamente, puedes eliminar el T\u00edtulo del encabezado de p\u00e1gina s\u00f3lo de las p\u00e1ginas individuales (el t\u00edtulo seguir\u00e1 siendo visible en las p\u00e1ginas de archivo y publicaciones), de todas las p\u00e1ginas (pero no de las publicaciones), o s\u00f3lo de tu p\u00e1gina de inicio.<\/p>\n\n\n\n<p><strong>Soluci\u00f3n 1:<\/strong> Usted tendr\u00e1 que a\u00f1adir el siguiente filtro, para eliminar el t\u00edtulo de cabecera de p\u00e1gina en todas las p\u00e1ginas individuales, p\u00e1ginas de archivo, y los puestos:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">add_filter( 'astra_advanced_header_title', 'remove_page_header_title' );\nfunction remove_page_header_title() {\n  return;\n}<\/pre>\n\n\n\n<p><strong>Soluci\u00f3n 2:<\/strong> Tendr\u00e1 que a\u00f1adir el siguiente filtro, para eliminar el T\u00edtulo de Cabecera de P\u00e1gina s\u00f3lo de p\u00e1ginas individuales:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">add_filter( 'astra_advanced_header_title', 'page_header_title_disable' );\nfunction page_header_title_disable( $title ) {\n  if ( is_page() ) {\n    $title = false;\n  }\n  return $title;\n};<\/pre>\n\n\n\n<p><strong>Soluci\u00f3n 3:<\/strong> Usted tendr\u00e1 que a\u00f1adir el siguiente filtro, para eliminar el t\u00edtulo de cabecera de p\u00e1gina de todas las p\u00e1ginas, pero dejarlo en todos los puestos:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">add_filter( 'astra_advanced_header_title', 'page_header_title_disable' );\nfunction page_header_title_disable( $title ) {\nif ( is_singular( 'page' ) | is_archive() ) {\n$\u00edtulo = false;\n}\nreturn $title;\n}<\/pre>\n\n\n\n<p><strong>Soluci\u00f3n 4:<\/strong> Tendr\u00e1 que a\u00f1adir el siguiente filtro, para eliminar el T\u00edtulo de Cabecera de P\u00e1gina s\u00f3lo de la p\u00e1gina de Inicio:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">add_filter( 'astra_advanced_header_title', 'page_header_title_disable' );\n\nfunction page_header_title_disable( $title ) {\nif ( is_front_page() | is_home() ) {\n$title = false;\n}\nreturn $title;\n};<\/pre>\n\n\n\n<div class=\"wp-block-uagb-inline-notice uagb-inline_notice__align-left uagb-block-afa05a89 uagb-inline_notice__outer-wrap\"><h4 class=\"uagb-notice-title\">Nota<\/h4><div class=\"uagb-notice-text\"><p>Para utilizar uno de los c\u00f3digos mencionados, basta con copiarlo y pegarlo en el campo\u00a0<a href=\"https:\/\/git-staging.wpastra.com\/es\/docs\/add-custom-php-code\/#3.-in-child-theme\">archivo functions.php del tema hijo<\/a>.<\/p><\/div><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Caso 2: <\/h3>\n\n\n\n<p>Despu\u00e9s de eliminar el encabezado de p\u00e1gina del banner superior, tendremos que a\u00f1adir el t\u00edtulo en el \u00e1rea de contenido inferior. <\/p>\n\n\n\n<p><strong>Soluci\u00f3n:<\/strong> Veamos el filtro que necesitar\u00e1s para a\u00f1adir el t\u00edtulo al \u00e1rea de contenido - <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">add_filter( 'astra_the_title_enabled', 'display_page_title', 999 );\nfunction mostrar_t\u00edtulo_de_p\u00e1gina() {\n  devuelve true;\n}<\/pre>\n\n\n\n<div class=\"wp-block-uagb-inline-notice uagb-inline_notice__align-left uagb-block-5cc90a8a uagb-inline_notice__outer-wrap\"><h4 class=\"uagb-notice-title\">Nota<\/h4><div class=\"uagb-notice-text\"><p>Pegue el c\u00f3digo anterior en el campo\u00a0<a href=\"https:\/\/git-staging.wpastra.com\/es\/docs\/add-custom-php-code\/#3.-in-child-theme\">archivo functions.php del tema hijo<\/a>.<\/p><\/div><\/div>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>As\u00ed es como puede eliminar el T\u00edtulo del encabezado de p\u00e1gina y a\u00f1adir el T\u00edtulo en la secci\u00f3n de contenido.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><a href=\"https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2019\/11\/ast-2-1-page-header-content-section.png\"><img decoding=\"async\" width=\"1325\" height=\"703\" src=\"https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2019\/11\/ast-2-1-page-header-content-section.png\" alt=\"Astra Page Header Content Section\" class=\"wp-image-47166\" srcset=\"https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2019\/11\/ast-2-1-page-header-content-section.png 1325w, https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2019\/11\/ast-2-1-page-header-content-section-300x159.png 300w, https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2019\/11\/ast-2-1-page-header-content-section-768x407.png 768w, https:\/\/git-staging.wpastra.com\/wp-content\/uploads\/2019\/11\/ast-2-1-page-header-content-section-1024x543.png 1024w\" sizes=\"(max-width: 1325px) 100vw, 1325px\" \/><\/a><\/figure>","protected":false},"excerpt":{"rendered":"<p>Es posible que alguna vez tenga un requisito, donde se necesita para eliminar el t\u00edtulo de cabecera de p\u00e1gina. Y anteriormente la \u00fanica opci\u00f3n era ocultar el mismo uso de CSS personalizado. Estamos proporcionando dos filtros. Uno para eliminar el t\u00edtulo del encabezado de p\u00e1gina y otro para a\u00f1adir el t\u00edtulo de la p\u00e1gina en el \u00e1rea de contenido. Vamos a sumergirnos en ambos [...]<\/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":"","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":"default","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":[126],"docs_tag":[],"class_list":{"0":"post-47155","1":"docs","2":"type-docs","3":"status-publish","5":"docs_category-page-headers"},"spectra_custom_meta":{"_edit_lock":["1684232436:89"],"_ppc_meta_key":["a:11:{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\";s:20:\"ppc_key5ddf5ba19a347\";s:9:\"TOC Added\";s:20:\"ppc_key5ddf5b93dc6a6\";s:21:\"Affiliate Links Added\";s:20:\"ppc_key5ddf5c326920c\";s:59:\"Headings are in title-case and have appropriate heading tag\";}"],"_edit_last":["89"],"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"],"_yoast_wpseo_primary_docs_category":["126"],"site-sidebar-layout":["default"],"site-content-layout":["default"],"theme-transparent-header-meta":["default"],"_yoast_wpseo_content_score":["90"],"_elementor_controls_usage":["a:0:{}"],"_wp_old_slug":["how-to-remove-page-header-title"],"_yoast_wpseo_estimated-reading-time-minutes":["3"],"_ht_kb_post_views_count":["7"],"_ht_kb_usefulness":["0"],"_ht_article_order_126":["47155"],"wp_last_modified_info":["May 16, 2023 @ 1:04 PM"],"wplmi_shortcode":["[lmt-post-modified-info]"],"views":["8460"],"helpful":["8"],"unhelpful":["22"],"redirects":["12"],"rank_math_primary_docs_category":["126"],"rank_math_news_sitemap_robots":["index"],"rank_math_robots":["a:1:{i:0;s:5:\"index\";}"],"rank_math_analytic_object_id":["781"],"rank_math_seo_score":["15"],"rank_math_internal_links_processed":["1"],"_wplmi_last_modified":["2023-05-16 13:04:23"],"rank_math_og_content_image":["a:2:{s:5:\"check\";s:32:\"b774e2479a8d51bba5631d9ad8c8dabb\";s:6:\"images\";a:1:{i:0;i:47164;}}"],"pfd_related_docs":[""],"_wpml_media_duplicate":["1"],"_trp_automatically_translated_slug_es_ES":["eliminar-el-titulo-del-encabezado-de-pagina"],"_uag_page_assets":["a:9:{s:3:\"css\";s:4877:\" .uagb-block-afa05a89.wp-block-uagb-inline-notice .uagb-notice-title{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;} .uagb-block-afa05a89 .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-afa05a89.uagb-dismissable button[type=\"button\"] svg{width: 16px;height: 16px;} .uagb-block-afa05a89.uagb-dismissable > svg{width: 16px;height: 16px;} .uagb-block-afa05a89 .uagb-notice-title{background-color: #fdf4c9;border-top-right-radius: 3px;border-top-left-radius: 3px;} .uagb-block-5cc90a8a.wp-block-uagb-inline-notice .uagb-notice-title{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;} .uagb-block-5cc90a8a .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-5cc90a8a.uagb-dismissable button[type=\"button\"] svg{width: 16px;height: 16px;} .uagb-block-5cc90a8a.uagb-dismissable > svg{width: 16px;height: 16px;} .uagb-block-5cc90a8a .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-afa05a89 .uagb-notice-text{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;} .uagb-block-afa05a89 .uagb-notice-title{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;} .uagb-block-5cc90a8a .uagb-notice-text{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;} .uagb-block-5cc90a8a .uagb-notice-title{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;}}@media only screen and (max-width: 767px) { .uagb-block-afa05a89 .uagb-notice-text{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;} .uagb-block-afa05a89 .uagb-notice-title{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;} .uagb-block-5cc90a8a .uagb-notice-text{padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;} .uagb-block-5cc90a8a .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-afa05a89' );\n});\nwindow.addEventListener( 'DOMContentLoaded', function() {\n\tUAGBInlineNotice.init( {\"c_id\":null,\"cookies\":false,\"close_cookie_days\":1,\"noticeDismiss\":\"\",\"icon\":\"rectangle-xmark\"}, '.uagb-block-5cc90a8a' );\n});\n });\";s:18:\"current_block_list\";a:8:{i:0;s:14:\"core\/paragraph\";i:1;s:10:\"core\/image\";i:2;s:12:\"core\/heading\";i:3;s:17:\"core\/preformatted\";i:4;s:18:\"uagb\/inline-notice\";i:5;s:11:\"core\/spacer\";i:6;s:14:\"uagb\/container\";i:7;s:14:\"core\/shortcode\";}s:8:\"uag_flag\";b:1;s:11:\"uag_version\";s:10:\"1776535053\";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":"You might ever have a requirement, where you needed to remove Page Header Title. And previously the only option was to hide the same using custom CSS. We are providing two filters. One to remove the Page Header Title and another one to add the Page Title in the Content Area. Let&#8217;s dive into both&hellip;","_links":{"self":[{"href":"https:\/\/git-staging.wpastra.com\/es\/wp-json\/wp\/v2\/docs\/47155"}],"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=47155"}],"version-history":[{"count":0,"href":"https:\/\/git-staging.wpastra.com\/es\/wp-json\/wp\/v2\/docs\/47155\/revisions"}],"wp:attachment":[{"href":"https:\/\/git-staging.wpastra.com\/es\/wp-json\/wp\/v2\/media?parent=47155"}],"wp:term":[{"taxonomy":"docs_category","embeddable":true,"href":"https:\/\/git-staging.wpastra.com\/es\/wp-json\/wp\/v2\/docs_category?post=47155"},{"taxonomy":"docs_tag","embeddable":true,"href":"https:\/\/git-staging.wpastra.com\/es\/wp-json\/wp\/v2\/docs_tag?post=47155"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}