Community Forums › Forums › General Discussion › Multisite's loop in the mother site
This topic contains 3 replies, has 2 voices, and was last updated by tunnelmilano 3 months ago.
-
AuthorPosts
-
February 13, 2013 at 4:38 am #20038
Hi,
I would like to use the Genesis News theme widgets for the main site of the multisite installation.
The problem is: the Genesis widgets don’t reads the loop of all the network but only of the single site.
For do that, right now I use the rss feed but give me category problems
There is a possibility to “said” to the Genesis widget to take the loop from all the network?
my site is: http://www.barblog.it
Thanks
February 17, 2013 at 11:51 am #20835There are 2 plugins that will do that:
1. WordPress MU Sitewide Tags Pages: http://wordpress.org/extend/plugins/wordpress-mu-sitewide-tags/
2. Network Home Pages: http://wpebooks.com/aggregating-global-content/
Both work the same regardless of the theme you are using.
Just a simple country girl | Twitter
February 18, 2013 at 4:46 am #20953Thank you Kim, Sitewide tags work well, except the post thumbnails. The plugin don’t import the thumb.
There is a post of Ron Rennick (Plugin author) where he said:
“There is a checkbox in the sitewide tags options in network options to turn on the thumbnail support. If the thumbnails do not show in your tags blog, you may need to add the template tag to the theme <?php the_post_thumbnail(); ?>”
Do you know where I need to paste this code?
In the same post, Andrea write:
“It’s different for Genesis because there’s handy hook we can take advantage off see this thread: http://www.studiopress.com/support/showthread.php?p=293222#post293222 ”
But this last link don’t work.
Do you know where I need to paste the <?php the_post_thumbnail(); ?> code?
thanks
February 19, 2013 at 3:50 am #21234RESOLVED. All work fine (show post AND Thumb) after past this code in function.php
// Sitewide tags thumbnail function
function my_swt_thumb_filter( $thumb, $args, $post ) {
if( function_exists( 'sitewide_tags_thumbnail_link' ) )
$thumb = sitewide_tags_thumbnail_link( $thumb, $post->ID );return $thumb;
}
add_filter( 'genesis_pre_get_image', 'my_swt_thumb_filter', 10, 3 );(ORIGINAL POST: http://wordpress.org/support/topic/swt-not-working-with-genesis-slider)
-
AuthorPosts
You must be logged in to reply to this topic.