{"id":3737,"date":"2016-10-17T13:38:00","date_gmt":"2016-10-17T13:38:00","guid":{"rendered":"https:\/\/purelysupp.com\/wordpress\/?p=3737"},"modified":"2022-10-17T22:43:44","modified_gmt":"2022-10-17T22:43:44","slug":"wordpress-category-template-php-line-1158-error-fix","status":"publish","type":"post","link":"https:\/\/purelysupp.com\/wordpress\/code-snippets\/wordpress-category-template-php-line-1158-error-fix\/","title":{"rendered":"WordPress Category-Template.php Line 1158 Error Fix"},"content":{"rendered":"\n<p><strong>WordPress Category-Template.php Line 1158 Error<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/**\n * Find this code snippet\n *\/\n\nfunction get_the_terms( $post, $taxonomy ) {\n\tif ( ! $post = get_post( $post ) )\n\t\treturn false;\n\n\t$terms = get_object_term_cache( $post-&gt;ID, $taxonomy );\n\tif ( false === $terms ) {\n\t\t$terms = wp_get_object_terms( $post-&gt;ID, $taxonomy );\n\t\t$to_cache = array();\n\t\tforeach ( $terms as $key =&gt; $term ) {\n\t\t\t$to_cache&#91; $key ] = $term-&gt;data;\n\t\t}\n\t\twp_cache_add( $post-&gt;ID, $to_cache, $taxonomy . '_relationships' );\n\t}\n\n\t$terms = array_map( 'get_term', $terms );<\/code><\/pre>\n\n\n\n<p><strong>Replace with this code snippet<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/**\n * Replace with this code snippet\n *\/\n\nfunction get_the_terms( $post, $taxonomy ) {\n\tif ( ! $post = get_post( $post ) )\n\t\treturn false;\n\n\t$terms = get_object_term_cache( $post-&gt;ID, $taxonomy );\n \tif ( false === $terms ) {\n \t\t$terms = wp_get_object_terms( $post-&gt;ID, $taxonomy );\n\t\tif ( ! is_wp_error( $terms ) ) {\n\t\t\t$to_cache = array();\n\t\t\tforeach ( $terms as $key =&gt; $term ) {\n\t\t\t\t$to_cache&#91; $key ] = $term-&gt;data;\n\t\t\t}\n\t\t\twp_cache_add( $post-&gt;ID, $to_cache, $taxonomy . '_relationships' );\n \t\t}\n \t}\n\n\tif ( ! is_wp_error( $terms ) ) {\n\t\t$terms = array_map( 'get_term', $terms );\n\t}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>WordPress Category-Template.php Line 1158 Error Replace with this code snippet<\/p>\n","protected":false},"author":1,"featured_media":3547,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","iawp_total_views":1,"wds_primary_category":56,"footnotes":""},"categories":[56,88],"tags":[238,110],"class_list":{"0":"post-3737","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-code-snippets","8":"category-wordpress-core","9":"tag-bug-fix","10":"tag-code","11":"entry"},"featured_image_src":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2018\/09\/code-snippits-600x400.jpg","featured_image_src_square":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2018\/09\/code-snippits-600x515.jpg","author_info":{"display_name":"Jack Alltrade","author_link":"https:\/\/purelysupp.com\/wordpress\/author\/jacka11trade\/"},"_links":{"self":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3737","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/comments?post=3737"}],"version-history":[{"count":3,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3737\/revisions"}],"predecessor-version":[{"id":10715,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3737\/revisions\/10715"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media\/3547"}],"wp:attachment":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media?parent=3737"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/categories?post=3737"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/tags?post=3737"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}