基督山伯爵的头像-THE FREE SKY
这家伙很懒,什么都没有写...
WordPress主题自动给图片添加Alt标签-THE FREE SKY

WordPress主题自动给图片添加Alt标签

    /** 自动给图片添加Alt标签 */ function image_alt_tag($content){ global $post;preg_match_all('/<img (.*?)\/>/', $content, $images); if(!is_null($images)) {foreach...
给后台文章列表添加缩略图展示-THE FREE SKY

给后台文章列表添加缩略图展示

在主题根目录下的 functions.php 文件<?下添加以下代码: if ( !function_exists('fb_AddThumbColumn') && function_exists('add_theme_support') ) { // for post and page add_t...