function li_display_love_link($content) { if (is_singular() && is_user_logged_in()) { $content .= li_love_link(); } return $content; }
/** * Manually output the link where we want it */ function marketify_li_love_link() { global $post; if (!is_object($post)) { return; } if (class_exists('Love_It_Pro')) { echo lip_love_it_link($post->ID, '', ''); } else { echo li_love_link(); } }