{"id":3672,"date":"2018-11-05T16:18:00","date_gmt":"2018-11-05T16:18:00","guid":{"rendered":"https:\/\/purelysupp.com\/wordpress\/?p=3672"},"modified":"2022-10-16T14:12:49","modified_gmt":"2022-10-16T14:12:49","slug":"display-one-post-then-thumbs-for-older-posts-in-genesis","status":"publish","type":"post","link":"https:\/\/purelysupp.com\/wordpress\/code-snippets\/display-one-post-then-thumbs-for-older-posts-in-genesis\/","title":{"rendered":"Display One post Then Thumbs for Older Posts in Genesis"},"content":{"rendered":"\n<p>Add the following code to a theme template file to display one post and then thumbs for previous posts in Genesis.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\/\/ remove default thumbnail display\nremove_action('genesis_post_content', 'genesis_do_post_image');\n\/\/ display 1 full post, the rest excerpts + thumbnails\nremove_action('genesis_post_content', 'genesis_do_post_content');\nadd_action('genesis_post_content', 'custom_post_content');\nfunction custom_post_content() {\n    global $loop_counter;\n    $paged = get_query_var('paged') ? get_query_var('paged') : 1;\n    if( absint($loop_counter) == 0 &amp;&amp; $paged == 1 ) {\n        the_content();\n    }\n    else {\n        genesis_do_post_image();\n        the_excerpt();\n    }\n}\ngenesis(); \/\/ requires Genesis 1.3+<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Add the following code to a theme template file to display one post and then thumbs for previous posts in Genesis.<\/p>\n","protected":false},"author":1,"featured_media":10674,"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],"tags":[110,227,64,83],"class_list":{"0":"post-3672","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-code-snippets","8":"tag-code","9":"tag-custom-templates","10":"tag-genesis-framework","11":"tag-layout","12":"entry"},"featured_image_src":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2022\/09\/Genesis-Code-Snippets-600x400.jpg","featured_image_src_square":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2022\/09\/Genesis-Code-Snippets-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\/3672","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=3672"}],"version-history":[{"count":3,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3672\/revisions"}],"predecessor-version":[{"id":10692,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3672\/revisions\/10692"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media\/10674"}],"wp:attachment":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media?parent=3672"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/categories?post=3672"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/tags?post=3672"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}