Please help me with this small code

Status
Not open for further replies.

Divvy

Active Member
806
2009
18
0
Hello guys,

Can someone please help me with this small code?

PHP:
<?php
global $post;
$args = array( 'posts_per_page' => 20, 'post_type'=> 'freeGallery', 'portfolio_cat' => 'Featured');
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>

I have 46 posts in total.
I want to show 20 posts per page.
I added a pagination in the bottom of the page.

The problem with my code is that only is showing 20 posts in total, I dont have page 2 and 3 in my pagination, only page 1.
What I'm doing wrong? :)

Thanks for any help you can give!!

__________________
Added after 1 5 minutes:

Fixed! Thank you anyway guys
 
Last edited:
1 comment
Status
Not open for further replies.
Back
Top