站长百科 | 数字化技能提升教程 数字化时代生存宝典
首页
数字化百科
电子书
建站程序
开发
服务器
办公软件
开发教程
服务器教程
软件使用教程
运营教程
热门电子书
WordPress教程
宝塔面板教程
CSS教程
Shopify教程
导航
程序频道
推广频道
网赚频道
人物频道
网站程序
网页制作
云计算
服务器
CMS
论坛
网店
虚拟主机
cPanel
网址导航
WIKI使用导航
WIKI首页
最新资讯
网站程序
站长人物
页面分类
使用帮助
编辑测试
创建条目
网站地图
站长百科导航
站长百科
主机侦探
IDCtalk云说
跨境电商导航
WordPress啦
站长专题
网站推广
网站程序
网站赚钱
虚拟主机
cPanel
网址导航专题
云计算
微博营销
虚拟主机管理系统
开放平台
WIKI程序与应用
美国十大主机
编辑“
WordPress:WPMU List All Postings Widget
”
人物百科
|
营销百科
|
网赚百科
|
站长工具
|
网站程序
|
域名主机
|
互联网公司
|
分类索引
跳转至:
导航
、
搜索
警告:
您没有登录。如果您做出任意编辑,您的IP地址将会公开可见。如果您
登录
或
创建
一个账户,您的编辑将归属于您的用户名,且将享受其他好处。
反垃圾检查。
不要
加入这个!
This code is the code needed to create a widget to show a list of on post in each of your blogs. It is dependent on the plug-in [http://wpmudev.org/project/List-All-Posts List All Posts], that should be installed first. Create a blank text file named widget_list_all_posts.php in your plugins folder, add the following php code. You should them be able to activate the List All Posts plugin and the List-All-Posts Widget on the plugins tab. Then look over in the presentation/widgets tab and you should have a new widget named List All Posts Widget. 需要这个代码,创建widget显示你的博客上的文章列表。这个代码依赖的插件,插件[http://wpmudev.org/project/List-All-Posts List All Posts]必须先安装。在你的插件文件夹中创建名为widget_list_all_posts.php的空白文本文件,添加以下的php代码,然后你就可以激活插件标签中的List All Posts 插件和List-All-Posts Widget。然后查看presentation/widgets标签,你应该有个新的,名为List All Posts Widget的widget。 <pre> <?php /* Plugin Name: List-All-Blogs Widget Plugin URI: http://codex.wordpress.org/WPMU_List_All_Blogs_Widget Description: Creates a list of all posts on a WPMU site as a widget, conversion from previous version based on code in http://www.erik-rasmussen.com/blog/2006/11/30/widgetize-anything/ Author: Unkown - last edited Iolaire McFadden Author URI: http://codex.wordpress.org/WPMU_List_All_Blogs_Widget Version: 0.0.1 */ function widget_list_all_posts_init() { if ( !function_exists('register_sidebar_widget') ) return; function widget_list_all_posts($args) { extract($args); if(function_exists(list_all_wpmu_blogs)) { echo $before_widget; echo $before_title . 'All Recent Deals' . $after_title; list_all_wpmu_posts(20, 0, '<p>', '</p>', '<p>', '</p>','show','hide','hide'); echo $after_widget; } else { echo "Error - function list_all_wpmu_blogs not found"; } } if ( function_exists('wp_register_sidebar_widget') ) // fix for wordpress 2.2.1 wp_register_sidebar_widget(sanitize_title('Widgetize list all posts' ), 'Widgetize list all posts', 'widget_list_all_posts', array(), 1); else register_sidebar_widget('Widgetize list all posts', 'widget_list_all_posts', 1); } add_action('plugins_loaded', 'widget_list_all_posts_init'); ?> </pre> <pre> <?php /* 插件名: List-All-Blogs Widget 插件 URI: http://codex.wordpress.org/WPMU_List_All_Blogs_Widget 描述: 在WPMU站点上创建所有文章列表,从先前以http://www.erik-rasmussen.com/blog/2006/11/30/widgetize-anything/上的代码为基础,转变 作者: 未知 –最后由 Iolaire McFadden 编辑 作者 URI: http://codex.wordpress.org/WPMU_List_All_Blogs_Widget Version: 0.0.1 */ function widget_list_all_posts_init() { if ( !function_exists('register_sidebar_widget') ) return; function widget_list_all_posts($args) { extract($args); if(function_exists(list_all_wpmu_blogs)) { echo $before_widget; echo $before_title . 'All Recent Deals' . $after_title; list_all_wpmu_posts(20, 0, '<p>', '</p>', '<p>', '</p>','show','hide','hide'); echo $after_widget; } else { echo "Error - function list_all_wpmu_blogs not found"; } } if ( function_exists('wp_register_sidebar_widget') ) // fix for wordpress 2.2.1 wp_register_sidebar_widget(sanitize_title('Widgetize list all posts' ), 'Widgetize list all posts', 'widget_list_all_posts', array(), 1); else register_sidebar_widget('Widgetize list all posts', 'widget_list_all_posts', 1); } add_action('plugins_loaded', 'widget_list_all_posts_init'); ?> </pre>
摘要:
请注意,您对站长百科的所有贡献都可能被其他贡献者编辑,修改或删除。如果您不希望您的文字被任意修改和再散布,请不要提交。
您同时也要向我们保证您所提交的内容是您自己所作,或得自一个不受版权保护或相似自由的来源(参阅
Wordpress-mediawiki:版权
的细节)。
未经许可,请勿提交受版权保护的作品!
取消
编辑帮助
(在新窗口中打开)