@patabugen … I was able to do the same… using a custom function…
functions.php
function create_post_links() {
global $post;
global $mwm_aal;
$content= $post->post_content;
$mwm_aal->find_content_links( $content );
return $mwm_aal->output_content_links();
}
add_action( 'init', 'create_post_links', 1, 0 );
Call it before your sidebar…
<?php create_post_links(); ?>
@leanderbraunschweig You are the man… swapping the amp ref works… tx.
Supporting Statement:
http://wordpress.stackexchange.com/questions/715/objective-best-practices-for-plugin-development/716#716
[ Moderator note: link fixed, please be careful not to create hidden links like that again. ]