为什么要动态加载文章"htmlcode">
3. 加载文章内容 后台处理 从前台传到后台的参数有两个, 一个是 action ID, 用于确定使用的接口, 另一个是文章的 ID, 用于获取文章对应的内容. 下面我们来分析一下wp-includes/post-template.php 的 get_the_content 方法. 处理方法 如果我们暂时不考虑输入密码, 分页等功能; 另外, 因为 More 和切断功能不应该在展开文章内容中存在, 响应处理可以变得很简单. 我们要做的事就这么几个: 多说无用, 直接上代码, 加注释:
/ 在文档加载完毕的时候遍历所有匹配文章的元素
jQuery(document).ready(function(){
jQuery('div.post').each(function() {
// 如果元素相应位置是文章 ID
var id = jQuery(this).attr('id');
if(/^post\-[0-9]+$/.test(id)) {
// 则为每个文章添加一个展开/折叠按钮
...
}
});
});
toggle.toggle(function() { // 展开
// 如果文章内容为空, 加载文章内容
if(jQuery('#' + id + ' .content').text() == '') {
...
}
// 显示文章内容, 并切换按钮样式
jQuery('#' + id + ' .content').slideDown();
jQuery(this).removeClass('collapse').addClass('expand');
},
function() { // 折叠
// 隐藏文章内容, 并切换按钮样式
jQuery('#' + id + ' .content').slideUp();
jQuery(this).removeClass('expand').addClass('collapse');
// 将按钮追加到文章标题前方
}).prependTo(jQuery('#' + id + ' h2'));
// 取得文章 ID
var postId = id.slice(5);
// 使用 AJAX 获取并处理文章内容
jQuery.ajax({
type: 'GET'
,url: '"ajax-loader">Loading...</p>');}
// 获取文章内容成功, 更新文章内容
,success: function(data){loadPostContent(id, data);}
// 获取文章内容失败, 显示出错提示
,error: function(data){loadPostContent(id, '<p>Oops, failed to load data.</p>');}
});
处理思路
function get_the_content($more_link_text = null, $stripteaser = 0) {
global $id, $post, $more, $page, $pages, $multipage, $preview;
// 设定 "查看全文" 的链接文案
if ( null === $more_link_text )
$more_link_text = __( '(more...)' );
// 返回内容
$output = '';
// More 标签是否存在的标记位
$hasTeaser = false;
// 如果文章要求输入密码, 并且在 Cookie 中找不到处理过的信息, 则返回要求输入密码的查看表单
if ( post_password_required($post) ) {
$output = get_the_password_form();
return $output;
}
// 请求的文章片段对应的页面大于最大页数 (即文章片段不存在), 则返回最大页码的文章片段
if ( $page > count($pages) )
$page = count($pages);
// 文章内容是最后分页中的文章片段
$content = $pages[$page-1];
// 如果文中有 More 标签, 要求切断文章并输出 "查看全文" 链接, 则重定义文章内容, 标记 More 标签存在
if ( preg_match('/<!--more(.*"阅读全文" 链接
if ( count($content) > 1 ) {
if ( $more ) {
$output .= '<span id="more-' . $id . '"></span>' . $content[1];
} else {
if ( ! empty($more_link_text) )
$output .= apply_filters( 'the_content_more_link', ' <a href="' . get_permalink() . "#more-$id\" class=\"more-link\">$more_link_text</a>", $more_link_text );
$output = force_balance_tags($output);
}
}
if ( $preview ) // preview fix for javascript bug with foreign languages
$output = preg_replace_callback('/\%u([0-9A-F]{4})/', create_function('$match', 'return "&#" . base_convert($match[1], 16, 10) . ";";'), $output);
// 返回文章内容
return $preview;
}
1. 做出 action 对应的接口
2. 获取指定文章的内容
3. 格式化文章内容
4. 返回文章内容
function load_post() {
// 如果 action ID 是 load_post, 并且传入的必须参数存在, 则执行响应方法
if($_GET['action'] == 'load_post' && $_GET['id'] != '') {
$id = $_GET["id"];
$output = '';
// 获取文章对象
global $wpdb, $post;
$post = $wpdb->get_row($wpdb->prepare("SELECT * FROM $wpdb->posts WHERE ID = %d LIMIT 1", $id));
// 如果指定 ID 的文章存在, 则对他进行格式化
if($post) {
$content = $post->post_content;
$output = balanceTags($content);
$output = wpautop($output);
}
// 打印文章内容并中断后面的处理
echo $output;
die();
}
}
// 将接口加到 init 中
add_action('init', 'load_post');
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。