本文整理汇总了PHP中wp_dashboard_cached_rss_widget函数的典型用法代码示例。如果您正苦于以下问题:PHP wp_dashboard_cached_rss_widget函数的具体用法?PHP wp_dashboard_cached_rss_widget怎么用?PHP wp_dashboard_cached_rss_widget使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wp_dashboard_cached_rss_widget函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: sj_dashboard_widget
/**
* SliceJack News dashboard widget.
*
* @since 1.0
*/
function sj_dashboard_widget()
{
global $slicejack_url;
$feed = array('type' => '', 'link' => $slicejack_url, 'url' => $slicejack_url . '?feed=rss2', 'title' => __('SliceJack Blog', 'briar'), 'items' => 5, 'show_summary' => 1, 'show_author' => 0, 'show_date' => 1);
define('DOING_AJAX', true);
wp_dashboard_cached_rss_widget('dashboard_slicejack', 'sj_dashboard_widget_output', $feed);
}
开发者ID:Fsantana31,项目名称:briar,代码行数:12,代码来源:dashboard.php
示例2: wp_dashboard_primary
/**
* WordPress News dashboard widget.
*
* @since 2.7.0
*/
function wp_dashboard_primary()
{
$feeds = array('news' => array('link' => apply_filters('dashboard_primary_link', __('https://wordpress.org/news/')), 'url' => apply_filters('dashboard_primary_feed', __('http://wordpress.org/news/feed/')), 'title' => apply_filters('dashboard_primary_title', __('WordPress Blog')), 'items' => 1, 'show_summary' => 1, 'show_author' => 0, 'show_date' => 1), 'planet' => array('link' => apply_filters('dashboard_secondary_link', __('https://planet.wordpress.org/')), 'url' => apply_filters('dashboard_secondary_feed', __('https://planet.wordpress.org/feed/')), 'title' => apply_filters('dashboard_secondary_title', __('Other WordPress News')), 'items' => apply_filters('dashboard_secondary_items', 3), 'show_summary' => 0, 'show_author' => 0, 'show_date' => 0));
if (!is_multisite() && is_blog_admin() && current_user_can('install_plugins') || is_network_admin() && current_user_can('manage_network_plugins') && current_user_can('install_plugins')) {
$feeds['plugins'] = array('link' => '', 'url' => array('popular' => 'http://wordpress.org/plugins/rss/browse/popular/'), 'title' => '', 'items' => 1, 'show_summary' => 0, 'show_author' => 0, 'show_date' => 0);
}
wp_dashboard_cached_rss_widget('dashboard_primary', 'wp_dashboard_primary_output', $feeds);
}
开发者ID:riasnelli,项目名称:WordPress,代码行数:13,代码来源:dashboard.php
示例3: wp_dashboard_plugins
function wp_dashboard_plugins()
{
wp_dashboard_cached_rss_widget('dashboard_plugins', 'wp_dashboard_plugins_output', array('http://wordpress.org/extend/plugins/rss/browse/popular/', 'http://wordpress.org/extend/plugins/rss/browse/new/', 'http://wordpress.org/extend/plugins/rss/browse/updated/'));
}
开发者ID:nouphet,项目名称:rata,代码行数:4,代码来源:dashboard.php
示例4: wp_dashboard_primary
/**
* WordPress News dashboard widget.
*
* @since 2.7.0
*/
function wp_dashboard_primary() {
$feeds = array(
'news' => array(
/**
* Filter the primary link URL for the 'WordPress News' dashboard widget.
*
* @since 2.5.0
*
* @param string $link The widget's primary link URL.
*/
'link' => apply_filters( 'dashboard_primary_link', __( 'http://wordpress.org/news/' ) ),
/**
* Filter the primary feed URL for the 'WordPress News' dashboard widget.
*
* @since 2.3.0
*
* @param string $url The widget's primary feed URL.
*/
'url' => apply_filters( 'dashboard_primary_feed', __( 'http://wordpress.org/news/feed/' ) ),
/**
* Filter the primary link title for the 'WordPress News' dashboard widget.
*
* @since 2.3.0
*
* @param string $title Title attribute for the widget's primary link.
*/
'title' => apply_filters( 'dashboard_primary_title', __( 'WordPress Blog' ) ),
'items' => 1,
'show_summary' => 1,
'show_author' => 0,
'show_date' => 1,
),
'planet' => array(
/**
* Filter the secondary link URL for the 'WordPress News' dashboard widget.
*
* @since 2.3.0
*
* @param string $link The widget's secondary link URL.
*/
'link' => apply_filters( 'dashboard_secondary_link', __( 'https://planet.wordpress.org/' ) ),
/**
* Filter the secondary feed URL for the 'WordPress News' dashboard widget.
*
* @since 2.3.0
*
* @param string $url The widget's secondary feed URL.
*/
'url' => apply_filters( 'dashboard_secondary_feed', __( 'https://planet.wordpress.org/feed/' ) ),
/**
* Filter the secondary link title for the 'WordPress News' dashboard widget.
*
* @since 2.3.0
*
* @param string $title Title attribute for the widget's secondary link.
*/
'title' => apply_filters( 'dashboard_secondary_title', __( 'Other WordPress News' ) ),
'items' => 3,
'show_summary' => 0,
'show_author' => 0,
'show_date' => 0,
)
);
if ( ( ! is_multisite() && is_blog_admin() && current_user_can( 'install_plugins' ) ) || ( is_network_admin() && current_user_can( 'manage_network_plugins' ) && current_user_can( 'install_plugins' ) ) ) {
$feeds['plugins'] = array(
'link' => '',
'url' => array(
'popular' => 'http://wordpress.org/plugins/rss/browse/popular/',
),
'title' => '',
'items' => 1,
'show_summary' => 0,
'show_author' => 0,
'show_date' => 0,
);
}
wp_dashboard_cached_rss_widget( 'dashboard_primary', 'wp_dashboard_primary_output', $feeds );
}
开发者ID:ShankarVellal,项目名称:WordPress,代码行数:91,代码来源:dashboard.php
示例5: function
<?php
require_once ABSPATH . 'wp-admin/includes/dashboard.php';
$success = \wp_dashboard_cached_rss_widget('podlove_dashboard_news', 'wp_dashboard_primary_output', $feeds);
if (!$success) {
?>
<script type="text/javascript">
jQuery.ajax(ajaxurl, {
dataType: 'html',
type: 'GET',
data: { action: 'podlove-admin-news' },
success: function(response, status, xhr) {
jQuery("#toplevel_page_podlove_settings_handle_news .inside").html(response);
}
});
</script>
<?php
}
开发者ID:johannes-mueller,项目名称:podlove-publisher,代码行数:18,代码来源:news.php
注:本文中的wp_dashboard_cached_rss_widget函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论