网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > 网络知识 > 正文

wordpress教程:文章添加缩略图

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 14/06/29

网学网网络知识编辑为广大网友搜集整理了:wordpress教程:文章添加缩略图绩等信息,祝愿广大网友取得需要的信息,参考学习。

   之前写过《替换HotNews Pro主题热门文章调用函数》配合wp-postviews插件,通过添加:

###Get TimeSpan Most Viewed 
function get_timespan_most_viewed($mode = '''', $limit = 10, $days = 7, $display = true) {
global $wpdb, $post;
$limit_date = current_time(''timestamp'') - ($days*86400);
$limit_date = date("Y-m-d H:i:s",$limit_date);
$where = '''';
$temp = '''';
if(!empty($mode) && $mode != ''both'') {
$where = "post_type = ''$mode''";
} else {
$where = ''1=1'';
}
$most_viewed = $wpdb->get_results("SELECT $wpdb->posts.*, (meta_value+0) AS views FROM $wpdb->posts LEFT JOIN $wpdb->postmeta ON $wpdb->postmeta.post_id = $wpdb->posts.ID WHERE post_date < ''".current_time(''mysql'')."'' AND post_date > ''".$limit_date."'' AND $where AND post_status = ''publish'' AND meta_key = ''views'' AND post_password = '''' ORDER BY views DESC LIMIT $limit");
if($most_viewed) {
foreach ($most_viewed as $post) {
$post_title = get_the_title();
$post_views = intval($post->views);
$post_views = number_format($post_views);
$temp .= "<li><a href=\"".get_permalink()."\">$post_title</a>".__('''', ''wp-postviews'')."</li>";
}
} else {
$temp = ''<li>''.__(''N/A'', ''wp-postviews'').''</li>''."\n";
}
if($display) {
echo $temp;
} else {
return $temp;
}
}

  调用显示某时间段内浏览最多日志的功能。

  近日,有童鞋问这些浏览最多的文章可不可以加上缩略图,简单修改了一下上述代码:

//按时间获得最受欢迎文章(带缩略图)

function get_timespan_most_viewed($mode = '''', $limit = 10, $days = 7, $display = true) {
global $wpdb, $post;
$limit_date = current_time(''timestamp'') - ($days*86400);
$limit_date = date("Y-m-d H:i:s",$limit_date);
$where = '''';
$temp = '''';
if(!empty($mode) && $mode != ''both'') {
$where = "post_type = ''$mode''";
} else {
$where = ''1=1'';
}
$most_viewed = $wpdb->get_results("SELECT $wpdb->posts.*, (meta_value+0) AS views FROM $wpdb->posts LEFT JOIN $wpdb->postmeta ON $wpdb->postmeta.post_id = $wpdb->posts.ID WHERE post_date < ''".current_time(''mysql'')."'' AND post_date > ''".$limit_date."'' AND $where AND post_status = ''publish'' AND meta_key = ''views'' AND post_password = '''' ORDER BY views DESC LIMIT $limit");
if($most_viewed) {
foreach ($most_viewed as $post) {
$post_title = get_the_title();
$post_views = intval($post->views);
$post_views = number_format($post_views);
$thumb = "<img src=\"".get_post_meta(get_the_id(), ''thumbnail'', true)."\">";
$temp .= "<li><a href=\"".get_permalink()."\">$post_title,$thumb</a>".__('''', ''wp-postviews'')."</li>";

}
} else {
$temp = ''<li>''.__(''N/A'', ''wp-postviews'').''</li>''."\n";
}
if($display) {
echo $temp;
} else {
return $temp;
}
}

  其中:

get_post_meta(get_the_id(), ''thumbnail'', true) 

  显示添加自定义栏目:thumbnail 文章的缩略图,也可以修改为调用特色图像:

the_post_thumbnail(''post_thumbnail''); 

  调用方法,在主题模板适当位置添加:

<ul>   
<?php if (function_exists(''get_most_viewed'')): ?>
<?php get_timespan_most_viewed(''post'',8,60, true, true); ?>
<?php endif; ?>
</ul>

  以上方法仅供参考。

  文章转载至:/uploadfile/201406/29/8D104033308.gif'' class=''ext'' border=''0''>

界面预览

  • 软件大小:6.28MB
  • 软件类别:国外软件 | 博客系统
  • 软件语言:简体中文
  • 运行环境:PHP/Mysql
  • 软件授权:免费版
  • 更新时间:2013-7-24 16:05:30
  • 相关链接:Home Page

 

 

WordPress v3.9 英文版下载

界面预览

  • 软件大小:6.05MB
  • 软件类别:国外软件 | 博客系统
  • 软件语言:英文
  • 运行环境:PHP/MySQL
  • 软件授权:开源软件
  • 更新时间:2014-4-17 9:56:31
  • 相关链接:Home Page

 

  • 上一篇资讯: [网络知识]
  • 网学推荐

    免费论文

    原创论文

    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号