• Resolved john brown

    (@alihan1988)


    Hello,
    My code is as follows, but I think the lang statement seems to be ignored. Because I’am getting non-English articles.
    I’m writing this code into my own custom plugin. Not into the theme…

    Please help, thanks.

    $posts = get_posts( array(
        'post_type' => 'post',
        'lang' => 'en', // query German and French posts
        'showposts' => 5,
    ) );

    https://polylang.pro/doc/developpers-how-to/

    —-

    Edit: problem solved. wp_loaded hook saved my day.

    add_action(‘wp_loaded’, “my_function”);

    • This topic was modified 4 years, 2 months ago by john brown.

    The page I need help with: [log in to see the link]

  • The topic ‘Getting posts by lang?’ is closed to new replies.