Custom Post Types
-
Hello, I would like to use custom posts, I tried something like this, but it doesn’t work, can you help me? I thank you, great plugin
<?php global $post; $posts = wpp_get_mostpopular( array( 'limit' => 10, 'post_type' => 'post', 'range' => 'last24hours', ) ); echo '<ul>'; if ( count( $posts ) > 0 ): foreach ( $posts as $the_post ): setup_postdata( $the_post ); ?> <li><a href="<?php the_permalink() ?>" title="<?php echo esc_attr( get_the_title() ); ?>"><?php the_title(); ?></a></li> <?php endforeach; endif; echo '</ul>'; wp_reset_postdata();
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Custom Post Types’ is closed to new replies.