• Resolved davidmwt

    (@davidmwt)


    Hi team, i set max. post to display is 8, but it is displayed 5 posts only when i put 8 post IDs in a post page.

    Looking forward your answers, thank you~

Viewing 4 replies - 16 through 19 (of 19 total)
  • same for me too

    SELECT wp_posts.ID
    FROM wp_posts
    WHERE 1=1
    AND wp_posts.ID IN (74993,75005,75017,75071,75073,75074,75078)
    AND wp_posts.post_type = 'post'
    AND ((wp_posts.post_status = 'publish'))
    ORDER BY FIELD(wp_posts.ID,74993,75005,75017,75071,75073,75074,75078)
    LIMIT 0, 5
    • This reply was modified 4 years, 1 month ago by abumazin.

    look I noticed from query monitor that the limit in the settings just works for the auto related posts so I added ‘numberposts’ => 10, in the array and this solved the problem but you shoud make it works from the sittings

    Plugin Author Ajay

    (@ajay)

    Brilliant! Thank you for this. I’ve realised the issue is because of get_posts by default only takes the 5 posts and not more than that. I need to pass an extra parameter

    numberposts => ‘-1’

    I’ll fix this in the next version.

    Plugin Author Ajay

    (@ajay)

    v3.0.6 has been released that fixes this

Viewing 4 replies - 16 through 19 (of 19 total)
  • The topic ‘max number in Manual related posts field’ is closed to new replies.