is it possible open links in new page-window?

I use The List Category Post plugin and i'm very satisfied, but if i would make open the posts (list post) in another page not in the same. Thanks and sorry for my bad english

Topic plugin-list-category-post Wordpress

Category Web


This was implemented for version 0.36 with the link_target attribute:

link_target - Select the target attribute for links to posts (target=_blank, _self, _parent, _top, framename).

Example: [catlink id=3 link_target=_blank] will create:

<a href="http://localhost/wordpress/?p=45" title="Test post" target="_blank">Test post</a>

Stay tuned for version 0.36 to update.


I'm assuming this is the plugin: http://wordpress.org/plugins/list-category-posts/?

You can use jquery to make all the .lcp_catlist links open in a new window - add this code to your footer:

<script type="text/javascript">
    jQuery(function(){
      jQuery('.lcp_catlist li a').prop('target', '_blank');
    });
</script>

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.