Getting posts by lang?
-
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”);
The page I need help with: [log in to see the link]
- The topic ‘Getting posts by lang?’ is closed to new replies.