Tagged: photo
hey! it is possible to insert Mansory with the latest posts in single.php after the comments and before the footer? Can you help with this?
http://i6.pixs.ru/storage/9/5/5/1jpg_1805065_13850955.jpg
Hey!
Try adding this at the very end of your theme / child theme functions.php file:
function put_something_before_footer_func() {
?>
<div class="before_footer">
<div class="container">
Put masonry shortcode here:
http://codex.wordpress.org/Function_Reference/do_shortcode
</div>
</div>
<?php
}
add_filter('get_footer', 'put_something_before_footer_func');
Cheers!
Josue
Dont work :( maybe I’m doing something wrong?
http://i7.pixs.ru/storage/9/8/5/1jpg_9721954_13855985.jpg
http://i6.pixs.ru/storage/9/9/2/2jpg_5815434_13855992.jpg
Hey!
You need to wrap the masonry shortcode code with this WordPress function:
http://codex.wordpress.org/Function_Reference/do_shortcode
Cheers!
Josue
Thx, it works!
You are welcome, glad to help :)
Regards,
Josue