get_posts: obtén todas las publicaciones por ID de autor
-
-
get_currentuserinfo ()estáen desuso desde la versión 4.5.0.Reemplazar 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 respuestas
- votos
-
- 2013-08-12
Estoy unpoco confundido.Si desea obtener solo unelemento de lamatriz depublicaciones,puede obtenerlo así:
- reset ($ current_user_posts) -primerapublicación
- end ($ current_user_posts) -publicaciónposterior
Pero si solo desea obtener unapublicación con
get_posts()
,puede usarel argumentoposts_per_page
para limitar los resultados.$args = array( 'author' => $current_user->ID, 'orderby' => 'post_date', 'order' => 'ASC', 'posts_per_page' => 1 );
Puede obtenermásinformación sobre losparámetrosen lapágina WP Query Class Reference (
get_posts()
toma losmismosparámetros que 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).-
tus $ argsfuncionanbien perono obtengotuprimera respuesta.Cómo usar $ current_user_posts.¿Podríasmostrarme?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
-
Si deseaimprimireltítulo de laprimerapublicación,debe usar: `echo $ current_user_posts [0] ['title']`.El 'título'es la clavepara lo quenecesita de lamatriz.La lista completa de claves quepuede obtener con `print_r (array_keys ($ current_user_posts))`. "Cómo usarlo" depende de lo que quieras hacer con él.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
-
obtener laidentificación de laprimerapublicación del autorget the author's first post's id
- 0
- 2013-08-12
- kindo
-
Puede obtener laidentificación 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,¿te ayudó?¿Esesta la respuesta quenecesitabas?@kindo, did it helped? Is this the answer you needed?
- 0
- 2013-08-12
- Marin Bînzari
-
$ current_user_posts [0] ['ID']nofunciona.pero laprimera solución con agregar 'numberposts' o 'posts_per_page' (usadoigual)funcionabien.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,Lo siento,olvidé que `get_posts ()` devuelve unamatriz de objetos depublicación.Utilice `$ 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
-
La última solución ahoratambiénfunciona.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);
y simplemente repita laspublicaciones del usuario actual
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
-
¿Tambiénpuedeexplicar qué haceel código anterior además depublicarel código,será útil,graciasCan 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
sutrabajopor (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>' );
Quiero obtenertodas laspublicacionespor ciertaidentificación de autor (usuario actual).Mástarde,quieroelegir laprimerapublicación realizadaporeste usuario (ASC). Supongo queno uso los argumentos correctosen get_posts,¿verdad?$ current_user_posts siempre contiene unamatriz contodas laspublicaciones delblogen varios objetos WP_Post diferentes.