WordPress User Bookmarks for UserPro Add-on will allow users to bookmark any content they want, posts, forum topics, custom posts, and also manage their bookmarks into collections. The add-on offers a simple way to show the bookmarks and bookmark widget and can be integrated into any theme.
You can embed the bookmark widget via shortcode (in addition sidebar widget and automatic embedding)
How to Embed This Shortcode in Editor
[userpro_bookmark]
How to Embed This Shortcode with PHP
global $userpro_fav;
echo $userpro_fav->bookmark();
To show collections
How to Embed This Shortcode in Editor
[userpro_bookmarklist]
How to Embed This Shortcode with PHP
global $userpro_fav;
echo $usrepro_fav->bookmarks();
To show public collections
How to Embed This Shortcode in Editor
[userpro_publicbookmark]
How to Embed This Shortcode with PHP
global $userpro_fav;
echo $usrepro_fav->bookmarks();
Note: You need the UserPro Bookmark add-on in order to use the above shortcodes. Please click here to download the add-on.
Leave A Comment?