Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • I also saw this message when I opened instagram after running this plugin for the first time. I looked through all the code and couldn’t see anywhere that my instagram credentials are being shared to a third party. It appears that the reason why this message occurs is because the plugin uses a backdoor API that is technically not published by Instagram but is used by Instagram? I am not completely positive.

    Any comments on this from the plugin creator @rolandalla91 ?

    Very useful addition! I modified it slightly to be able to throw out any special characters that exist in the tags and to be able to handle any special characters that exist in the title as well. I also added an extra line between the title, url, and tags. Here is what I ended up with:

    $tags	= get_the_tags($ID);
    $tagged = '';
    if ( $tags ) {
    	foreach ( $tags as $tag ) { $tagged[] = rawurlencode(preg_replace('/[^A-Za-z0-9\-]/', '', htmlspecialchars_decode($tag->name))); }
    	$tagged = implode(' #',$tagged);
    }
    $caption = htmlspecialchars_decode(get_the_title($ID))."\n\n".home_url('?p='.$ID)."\n\n#".$tagged;     // caption
    • This reply was modified 7 years, 7 months ago by jwenz723.
Viewing 2 replies - 1 through 2 (of 2 total)