get_posts - recupera tutti i post dell'id dell'autore
-
-
get_currentuserinfo () è deprecato dalla versione 4.5.0.Sostituisci con: `$ 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 risposta
- voti
-
- 2013-08-12
Sono unpo 'confuso.Se vuoi ottenere solo unelemento dall'arraypostspuoi ottenerloin questomodo:
- reset ($ current_user_posts) -primopost
- end ($ current_user_posts) -post lat
Ma se vuoi ottenere un solopost con
get_posts()
puoi utilizzare l'argomentoposts_per_page
per limitarei risultati.$args = array( 'author' => $current_user->ID, 'orderby' => 'post_date', 'order' => 'ASC', 'posts_per_page' => 1 );
Maggioriinformazioni suiparametri chepuoi ottenere sullapagina Riferimento alla classe di query WP (
get_posts()
accettagli stessiparametri di WP Query).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).-
ituoi $ argsfunzionanobene manon ottengo latuaprima risposta.Come usare $ current_user_posts.Potrestimostrarmi?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 vuoi stampareiltitolo delprimopost dovresti usare: `echo $ current_user_posts [0] ['title']`.Il 'titolo' è la chiaveper ciò di cui haibisogno dall'array.L'elenco completo delle chiavi chepuoi ottenere con `print_r (array_keys ($ current_user_posts))`. "Come si usa" dipende da cosa si vuolefare conesso.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
-
ottenere l'ID delprimopost dell'autoreget the author's first post's id
- 0
- 2013-08-12
- kindo
-
Puoi ottenere l'id con: $ current_user_posts [0] ['ID']You can get the id with: $current_user_posts[0]['ID']
- 0
- 2013-08-12
- Marin Bînzari
-
@kindo,ha aiutato?È questa la risposta di cui avevibisogno?@kindo, did it helped? Is this the answer you needed?
- 0
- 2013-08-12
- Marin Bînzari
-
$ current_user_posts [0] ['ID']nonfunziona.ma laprima soluzione con l'aggiunta di 'numberposts' o 'posts_per_page' (usato uguale)funzionabene.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,Scusa,ho dimenticato che `get_posts ()` restituisce un array di oggettipost.Usa `$ 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
-
L'ultima soluzione orafunziona anche.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 ripeti semplicementei post degli utenti correnti
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
-
Puoi anche spiegare cosafail codice sopra oltre apubblicareil codice,sarà utile,grazieCan 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
è opera di (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>' );
Voglio riceveretuttii post da un determinato ID autore (utente corrente).Successivamente,voglio scegliereilprimopost creato da questo utente (ASC). Immagino dinon utilizzaregli argomentigiustiin get_posts,vero?$ current_user_posts contiene sempre un array contuttii post delblogin più oggetti WP_Post diversi.