Please refer to the following post
https://kriesi.at/support/topic/post-format-link-links-direct-in-latest-news-widgit/#post-426885
One last question.
Where would I put:
target=”_blank”
So that the post format links in the sidebar widgets open in a new window?
Possible?
if($format == 'link')
{
$current_post = array();
$current_post['content'] = get_the_content();
$current_post['title'] = get_the_title();
if(function_exists('avia_link_content_filter'))
{
$current_post = avia_link_content_filter($current_post);
}
$link = $current_post['url'];
}
Hi stupaul22!
Thank you for coming back.
In framework > php > class-framework-widgets.php goto line 523 (original file), locate:
echo "<a class='news-link' title='".get_the_title()."' href='".$link."'>";
and replace with:
echo "<a class='news-link' title='".get_the_title()."' href='".$link."' target='_blank'>";
Regards,
Günter