This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// include in functions.php | |
function get_recent_posts($num=3){ | |
$postsQuery = new WP_Query(); | |
$args=array( | |
'showposts='=> $num, | |
'orderby'=>'posted', | |
'post_type'=>'post', | |
//'taxonomy'=>'category', uncomment to filter posts within a category | |
// 'term'=>'news', e.g.: news - could be anything | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
takes the x,y coordinates, the number of spikes, the inner and the outer radius of the spikes | |
*/ | |
function drawStar(ctx,cx,cy,spikes,r0,r1){ | |
var rot=Math.PI/2*3,x=cx,y=cy,step=Math.PI/spikes | |
ctx.strokeSyle="#000"; | |
ctx.beginPath(); |
NewerOlder