服务器被禁止了邮箱端口,无法通过QQ邮箱和空间同步了,只能通过人人网转道QQ空间了。
具体是这样的,人人网日志里面有导入站外博客功能,使用的是RSS其实,如图:
第一个我已经添加,设置方法和下面第二个一样,一看就明白了。
然后是QQ空间的日志界面:
但是现在又出现了一个问题,人人网还给了个”查看原文”的链接,QQ啥都没。下面代码可以在RSS中加入自己定义的一些内容,至少在RSS地址中看是正常的。
function wpdaxue_feed_copyright($content) {
if(is_feed()) {
$post_title = get_the_title(); //获取原文标题
$post_link = get_permalink($post->ID); //获取原文链接
$output = ‘<p><span style=”font-weight:bold;text-shadow:0 1px 0 #ddd;”>声明:版权所有</span> <a href=”‘. home_url().'”>’.get_bloginfo(‘name’).'</a> —— <a href=”‘. home_url().'”>’. home_url().'</a><br />原文传送门<a rel=”bookmark” title=”‘ . $post_title . ‘” href=”‘ . $post_link . ‘”>《 ‘ . $post_title . ‘》</a> —— <a rel=”bookmark” title=”‘ . $post_title . ‘” href=”‘ . $post_link . ‘”>’ . $post_link . ‘</a></p>’;
$content = $content . $output ;
}
return $content;
}
add_filter (‘the_content’, ‘wpdaxue_feed_copyright’);
然后我在人人中导入文章发现还是没有这些内容,或许是因为人人网采集数据更新太慢,没发现新的内容,或者是老的内容他根本不更新,看来效果只能等人人刷新了才能知道了。
留下您的宝贵意见