Hello!
Is it possible to add a "Read More" link below the excerpt, just like i simulated in the image: http://www.arthurmustafa.com/docs/read-more-link.jpg ?
Im working on this site and i succedeed to customize this plugin the way i wanted but i just cant insert this link.
If someone will help me, this is the code that i`m using to make this plugin work (off course i have the original plugin allready activated):
<div id="Noutati" class="hiddencontent">
<?php if (function_exists('yg_recentposts')){ ?>
<?php
$parameters = array(
'limit' => 3, //Number of posts to show
'excerpt' => 160, //excerpt length (letters)
'actcat' => false, //get posts current category
'cats' => '4', //Categories to get posts
'cusfield' => 'thumbnail', //custom field name of thumbnail image
'w' => 75, //width
'h' => 75, //height
'firstimage' => false, //get first image of post content
'atimage' => true, //get first attached image of post
'defimage' => 'http://localhost/constantart/wp-content/uploads/2009/10/noutati-default.jpg' //default thumbnail image
);
//print most recent posts
yg_recentposts($parameters);
?>
<?php } ?>
</div>
I know it can be done easily, but i`m too tired to figure it out ...
Thank you for your help!