统计图片的数量有些图片比较多wordpress网站会比较需要获取文章图片总数,函数放到functions中即可。调用的地方加入<?php echo pic_total(); ?>function pic_total() { global $post; $post_img = ''; ob_start(); …
统计图片的数量
有些图片比较多wordpress网站会比较需要获取文章图片总数,函数放到functions中即可。调用的地方加入<?php echo pic_total(); ?>
function pic_total() { global $post; $post_img = ''; ob_start(); ob_end_clean(); $output = preg_match_all('/\<img.+?src="(.+?)".*?\/>/is ', $post->post_content, $matches, PREG_SET_ORDER); $post_img_src = $matches [0][1]; $cnt = count($matches); return $cnt;}
统计文章字数的数量
//字数统计function count_words ($text) {global $post;if ( '' == $text ) { $text = $post->post_content; if (mb_strlen($output, 'UTF-8') < mb_strlen($text, 'UTF-8')) $output .= '本文共' . mb_strlen(preg_replace('/\s/','',html_entity_decode(strip_tags($post->post_content))),'UTF-8') . '个字'; return $output;}}
调用方式<?php echo count_words ($text); ?>
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)