Replies: 0
To contribute, I have added a code to the attachment to URL and TAG posting.
/wp-content/plugins/auto-post-to-instagram/wp2instagram.php
$caption = get_the_title($ID); // caption
Change
$tags = get_the_tags($ID);
$tagged = '';
if ( $tags ) {
foreach ( $tags as $tag ) { $tagged[] = rawurlencode($tag->name); }
$tagged = implode('#',$tagged);
}
$caption = get_the_title($ID)."\n".home_url('?p='.$ID)."\n#".$tagged; // caption