Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I upgraded my blog to WP 3.3 and the plugin simple facebook like is not fully compatible.

I'm not understanding what this deprecated code is trying to do, but i need to fix it.

the Php

function simple_facebook_link( $service = "", $url = "" ) {
    artiss_facebook_link( $service, $url );
    return;
}

the html

<a href="<?php simple_facebook_link(); ?>">share  it</a>
share|improve this question
why not try to get another plugin. there are platy of social media sharing plugins out there. Also you need to explore the function artiss_facebook_link() to find out the deprecated functions. – Sisir Dec 29 '11 at 10:24

closed as too localized by toscho Mar 2 at 23:40

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

The only thing i can find wrong with it is on line 105 of simple-facebook-link.php it's missing global $post; which is required in order to get the correct permalink, apart from that i found no deprecated errors anywhere.

share|improve this answer
i'm checking it, thanks – TrustWeb Dec 29 '11 at 11:06

Not the answer you're looking for? Browse other questions tagged or ask your own question.