hi i am new to wordpress. so i am getting lot of problems
I am trying to display posts of specific category using the following code
<?php
$cat=$_GET["cat"];
$args=array('category'=>$cat);
$posts_array = get_posts( $args );
foreach($posts_array as $posting)
{
echo $posting;
}
?>
But i am getting errors instead. Please anyone help me in getting the solution. Thanks in advance