Display thumbnail of child, parent and ancestor using featured thumbnails

I think you can use a different approach: write a custom sql query that get the ids of the thumbnails attachment of the children pages, and if found call wp_get_attachment_image_src on this ids to retrieve the urls: function my_get_thumbnails( $post = NULL, $which=”both” ) { // first we get the post, if no post is … Read more

Generate thumbnails like 500px.com

I have gotten something similar working in WordPress by incorporating the Masonry script (or isotope if you want filtering) Here they are: masonry -> http://masonry.desandro.com/ isotope -> http://isotope.metafizzy.co/ I am assuming you are comfortable with javascript and jQuery so I won’t tell you how to use it (the site has tutorials if you get stuck) … Read more