Skip to content
Snippets Groups Projects
function.articlesummary.php 182 B
Newer Older
  • Learn to ignore specific revisions
  • <?php
    	function smarty_function_articlesummary($params, &$smarty) {
    		$matches = array();
    
    		preg_match("/^(<p>.*?<\/p>)/", $params['article'], $matches);
    		return $matches[0];