| 4 | | <h3><a href="http://blog.wordpress.tv"><?php esc_html_e( 'From the Blog', 'wptv' ); ?></a></h3> |
| 5 | | <ul> |
| 6 | | <?php |
| 7 | | // Make it easier to contribute to this theme by not assuming multisite context. |
| 8 | | if ( function_exists( 'switch_to_blog' ) ) { |
| 9 | | switch_to_blog( 5310177 ); // blog.wordpress.tv |
| 10 | | } |
| 11 | | |
| 12 | | query_posts( 'posts_per_page=5' ); |
| 13 | | |
| 14 | | while ( have_posts() ) : |
| 15 | | the_post(); |
| 16 | | ?> |
| 17 | | <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> |
| 18 | | <?php |
| 19 | | endwhile; |
| 20 | | |
| 21 | | if ( function_exists( 'restore_current_blog' ) ) { |
| 22 | | restore_current_blog(); |
| 23 | | } |
| 24 | | ?> |
| 25 | | </ul> |
| 26 | | </li> |
| 27 | | <li> |