Skip to content

Instantly share code, notes, and snippets.

@szbl
Created August 18, 2015 18:25
Show Gist options
  • Save szbl/4a552558d3f510ce65b7 to your computer and use it in GitHub Desktop.
Save szbl/4a552558d3f510ce65b7 to your computer and use it in GitHub Desktop.
<?php
// on favorite
add_user_meta( get_current_user_id(), 'tca_favorites', get_the_ID() );
// retrieve
$faves = get_user_meta( get_current_user_id(), 'tca_favorites', false );
$faves = array_unique( $faves );
foreach ( $faves as $favorite_id )
{
$favorite = get_post( $favorite_id );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment