Title: List
Last modified: August 30, 2016

---

# List

 *  [fillzest](https://wordpress.org/support/users/fillzest/)
 * (@fillzest)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/list-5/)
 * I have WordPress 4.4 and I can’t see list of favorites . Where is it ?
 * [https://wordpress.org/plugins/favorites/](https://wordpress.org/plugins/favorites/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Thread Starter [fillzest](https://wordpress.org/support/users/fillzest/)
 * (@fillzest)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/list-5/#post-6869852)
 * Please ! Where I can see list of favorites ? I can’t find .
 *  [rjony](https://wordpress.org/support/users/rjony/)
 * (@rjony)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/list-5/#post-6869902)
 * Hi,
 * For List of favorite posts you just paste the below code where you want to view
   faith. Post like your page or your template.
 * You can check this site as an example: [http://www.itsoneandonly.com/](http://www.itsoneandonly.com/)
   
   Save Item and for view list of item GOTO ‘Whislist’ menu.
 * Thanks…
 * <!—— CODE ——->
 * $favorites = get_user_favorites();
    if ( $favorites ) : // This is important:
   if an empty array is passed into the WP_Query parameters, all posts will be returned
   $paged = ( get_query_var(‘paged’) ) ? get_query_var(‘paged’) : 1; // If you want
   to include pagination $favorites_query = new WP_Query(array( ‘post_type’ => ‘
   post’, // If you have multiple post types, pass an array ‘posts_per_page’ => -
   1, ‘ignore_sticky_posts’ => true, ‘post__in’ => $favorites, ‘paged’ => $paged//
   If you want to include pagination, and have a specific posts_per_page set ));
   if ( $favorites_query->have_posts() ) : while ( $favorites_query->have_posts()):
   $favorites_query->the_post(); echo get_the_title(); endwhile; next_posts_link(‘
   Older Favorites’, $favorites_query->max_num_pages ); previous_posts_link( ‘Newer
   Favorites’ ); endif; wp_reset_postdata(); else : echo “Please select an item 
   for favorite post list”; endif;
 *  Thread Starter [fillzest](https://wordpress.org/support/users/fillzest/)
 * (@fillzest)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/list-5/#post-6869933)
 * Thank you very much !

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘List’ is closed to new replies.

 * ![](https://ps.w.org/favorites/assets/icon-128x128.png?rev=1677726)
 * [Favorites](https://wordpress.org/plugins/favorites/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/favorites/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/favorites/)
 * [Active Topics](https://wordpress.org/support/plugin/favorites/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/favorites/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/favorites/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [fillzest](https://wordpress.org/support/users/fillzest/)
 * Last activity: [10 years, 5 months ago](https://wordpress.org/support/topic/list-5/#post-6869933)
 * Status: not resolved