'', 'link' => '' ), $params)); $html = ''; if ($slug == '') return $html; $q = new WP_Query("pagename=$slug"); if (!$q->have_posts()) { $q = new WP_Query("name=$slug"); } // the loop while ($q->have_posts()) { $q->the_post(); // generate HTML $html .= '

' . the_title('','',false) . "

\n" . (has_post_thumbnail() ? get_the_post_thumbnail() : '') . get_the_excerpt(); } return $html; } // register shortcode add_shortcode('alixcan_alinti', 'AlixcaN_Alinti_Yap');