Wordpress的title优化和首页截断

/ #电脑相关 / 0 comment

首先是页面title的优化.

title这个东东感觉还是看自己的喜好.无意中看见的wp_title()这个函数竟然可以带"right"这个参数.以前记得还是改的程序代码才实现的添加"-"呢.然后在首页title显示网站描述.

代码:


<?php wp_title( '-', true, 'right' );bloginfo( 'name' );
$site_description = get_bloginfo( 'description', 'display' );
	if ( $site_description && ( is_home() || is_front_page() ) )
		echo " - $site_description";
?>

首页截断:

就一个句子就搞定了.当然要看模板的具体需求可能添加一些判断语句.这里需要注意的时strip_tags()函数的使用中要排除掉

标签,要不然整个页面都会瘫成一堆泥一样了.

post_content),'


'), 0, 250,"..."); ?>

回应