3 | | <?php[[BR]] |
4 | | $args = array( 'numberposts' => '3', 'post_status' => 'publish' );[[BR]] |
5 | | $recent_posts = wp_get_recent_posts( $args );[[BR]] |
6 | | foreach( $recent_posts as $recent ){[[BR]] |
7 | | echo '<li id="date"><a href="' . get_permalink($recent["ID"]) . '" title="'.esc_attr($recent["post_title"]).'" >' . get_the_date('M d') . '</a></li><li><a href="' . get_permalink($recent["ID"]) . '" title="'.esc_attr($recent["post_title"]).'" >' . $recent["post_title"].'</a> - '.esc_attr($recent["post_excerpt"]).'</li><li id="breaker"></li>';[[BR]] |
8 | | }[[BR]] |
| 3 | |
| 4 | {{{ |
| 5 | <?php |
| 6 | $args = array( 'numberposts' => '3', 'post_status' => 'publish' ); |
| 7 | $recent_posts = wp_get_recent_posts( $args ); |
| 8 | foreach( $recent_posts as $recent ){ |
| 9 | echo '<li id="date"><a href="' . get_permalink($recent["ID"]) . '" title="'.esc_attr($recent["post_title"]).'" >' . get_the_date('M d') . '</a></li><li><a href="' . get_permalink($recent["ID"]) . '" title="'.esc_attr($recent["post_title"]).'" >' . $recent["post_title"].'</a> - '.esc_attr($recent["post_excerpt"]).'</li><li id="breaker"></li>'; |
| 10 | } |