ccc

Wordpress: Mostrar el excerpt (fragmento) del contenido de la entrada

En el functions.php:
function get_post_excerpt_by_id( $post_id ) {
    global $post;
    $post = get_post( $post_id );
    setup_postdata( $post );
    $the_excerpt = get_the_excerpt();
    wp_reset_postdata();
    return $the_excerpt;
}

for($i=0; $i<count($post_array); $i++){
...
echo get_post_excerpt_by_id($post_array[$i]->ID);
}

No hay comentarios:

Publicar un comentario