Created
August 18, 2015 18:25
-
-
Save szbl/4a552558d3f510ce65b7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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