Get_posts - Obtenha todas as mensagens por autor ID
-
-
get_currentuserinfo () é reprovado desde a versão 4.5.0.Substituapor: `$ Current_user=wp_get_current_user ();`get_currentuserinfo() is deprecated since version 4.5.0. Replace with: `$current_user = wp_get_current_user();`
- 1
- 2017-05-15
- Christian Lescuyer
-
3 respostas
- votos
-
- 2013-08-12
Estou umpouco confuso.Se você quiser obter umelemento de somente damatriz depostagens,vocêpode obtê-lo assim:
- reset ($ Current_user_posts) -primeiropost
- fim ($ Current_user_posts) - Lat Post
Mas se você quiser obter apenas umpost com o
get_posts()
vocêpode usar o argumentoposts_per_page
para limitar os resultados.$args = array( 'author' => $current_user->ID, 'orderby' => 'post_date', 'order' => 'ASC', 'posts_per_page' => 1 );
Maisinformações sobre osparâmetros que vocêpode obterem Referência de classe de consulta WP página (
get_posts()
Leva osmesmosparâmetros que a consulta WP).I'm a bit confused. If you want to get onlya element from the posts array you can get it like this:
- reset($current_user_posts) - first post
- end($current_user_posts) - lat post
But if you want to get just one post with the
get_posts()
you can use theposts_per_page
argument to limit the results.$args = array( 'author' => $current_user->ID, 'orderby' => 'post_date', 'order' => 'ASC', 'posts_per_page' => 1 );
More info about parameters you can get on WP Query Class Reference page (
get_posts()
takes same parameters as WP Query).-
Seus $ ARGSfuncionambem,maseunão recebo suaprimeira resposta.Como usar $ Current_User_posts.Vocêpoderiame mostrar?your $args work fine but I don't get your first answer. How to use $current_user_posts. Could you show me?
- 1
- 2013-08-12
- kindo
-
Se você quiserimprimir otítulo doprimeiropost,você deve usar: `echo $ Current_user_posts [0] ['title']`.O 'título' é a chavepara o que vocêprecisa damatriz.A lista completa de chaves que vocêgoga recebe com `print_r (array_keys ($ corrent_user_posts))`. "Como usar" depende do que você querfazer comisso.If you want to print the title of the first post you should use: `echo $current_user_posts[0]['title']`. The 'title' is the key for what you need from array. The full list of keys you cang get with `print_r(array_keys($current_user_posts))`. "How to use" it depends on what you want to do with it.
- 0
- 2013-08-12
- Marin Bînzari
-
Obtenha oprimeiro ID dopost do autorget the author's first post's id
- 0
- 2013-08-12
- kindo
-
Vocêpode obter o ID com: $ corrent_user_posts [0] ['ID']You can get the id with: $current_user_posts[0]['ID']
- 0
- 2013-08-12
- Marin Bînzari
-
@kindo,ajudou?Isso é a resposta que vocêprecisava?@kindo, did it helped? Is this the answer you needed?
- 0
- 2013-08-12
- Marin Bînzari
-
$ corrent_user_posts [0] ['ID']nãofunciona.Mas aprimeira solução com adicionar 'numberposts' ou 'posts_per_page' (usadaigual)funcionabem.ty.$current_user_posts[0]['ID'] does not work. but the first solution with adding 'numberposts' or 'posts_per_page' (used equal) works fine. ty
- 0
- 2013-08-12
- kindo
-
@kindo,desculpe,esqueci que "get_posts ()" retorna amatriz de objetospostais.Use `$ Current_User_posts [0] -> ID`@kindo, Sorry, forgot that `get_posts()` returns array of post objects. Use `$current_user_posts[0]->ID`
- 0
- 2013-08-12
- Marin Bînzari
-
A última solução agoratambémfunciona.The last solution now also works.
- 0
- 2013-08-12
- kindo
-
- 2016-09-09
global $current_user; $args = array( 'author' => $current_user->ID, 'orderby' => 'post_date', 'order' => 'ASC', 'posts_per_page' => -1 // no limit ); $current_user_posts = get_posts( $args ); $total = count($current_user_posts);
e apenas loop aspostagens de usuário atuais
global $current_user; $args = array( 'author' => $current_user->ID, 'orderby' => 'post_date', 'order' => 'ASC', 'posts_per_page' => -1 // no limit ); $current_user_posts = get_posts( $args ); $total = count($current_user_posts);
and just loop the current user posts
-
Vocêtambémpodeexplicar o que o código acimafaz além depostar o código,será útil,obrigadoCan you also explain what the above code does in addtion to posting the code, it will be helpful, thanks
- 0
- 2016-09-09
- bravokeyl
-
- 2018-07-08
Seutrabalhopor (WP4.9.7)
$user_id = get_current_user_id(); $args=array( 'post_type' => 'POSTTYPE', 'post_status' => 'publish', 'posts_per_page' => 1, 'author' => $user_id ); $current_user_posts = get_posts( $args ); $total = count($current_user_posts); wp_die( '<pre>' . $total . '</pre>' );
its work by (wp4.9.7)
$user_id = get_current_user_id(); $args=array( 'post_type' => 'POSTTYPE', 'post_status' => 'publish', 'posts_per_page' => 1, 'author' => $user_id ); $current_user_posts = get_posts( $args ); $total = count($current_user_posts); wp_die( '<pre>' . $total . '</pre>' );
Eu quero obtertodas aspostagens de certos ID do autor (usuário atual).Maistarde,queroescolher oprimeiropostfeitoporeste usuário (ASC). Eu acho quenão uso os argumentos certosem get_posts,soueu?$ corrent_user_posts. Sempre contém umamatriz comtodas aspostagens deblogem vários objetos WP_POST diferentes.