当前位置: 首页>>代码示例>>PHP>>正文


PHP _s_categorized_blog函数代码示例

本文整理汇总了PHP中_s_categorized_blog函数的典型用法代码示例。如果您正苦于以下问题:PHP _s_categorized_blog函数的具体用法?PHP _s_categorized_blog怎么用?PHP _s_categorized_blog使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了_s_categorized_blog函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _s_entry_footer

 /**
  * Prints HTML with meta information for the categories, tags and comments.
  */
 function _s_entry_footer()
 {
     // Hide category and tag text for pages.
     if ('post' === get_post_type()) {
         /* translators: used between list items, there is a space after the comma */
         $categories_list = get_the_category_list(esc_html__(', ', '_s'));
         if ($categories_list && _s_categorized_blog()) {
             printf('<span class="cat-links">' . esc_html__('Posted in %1$s', '_s') . '</span>', $categories_list);
             // WPCS: XSS OK.
         }
         /* translators: used between list items, there is a space after the comma */
         $tags_list = get_the_tag_list('', esc_html__(', ', '_s'));
         if ($tags_list) {
             printf('<span class="tags-links">' . esc_html__('Tagged %1$s', '_s') . '</span>', $tags_list);
             // WPCS: XSS OK.
         }
     }
     if (!is_single() && !post_password_required() && (comments_open() || get_comments_number())) {
         echo '<span class="comments-link">';
         /* translators: %s: post title */
         comments_popup_link(sprintf(wp_kses(__('Leave a Comment<span class="screen-reader-text"> on %s</span>', '_s'), array('span' => array('class' => array()))), get_the_title()));
         echo '</span>';
     }
     edit_post_link(sprintf(esc_html__('Edit %s', '_s'), the_title('<span class="screen-reader-text">"', '"</span>', false)), '<span class="edit-link">', '</span>');
 }
开发者ID:benoitchantre,项目名称:_s,代码行数:28,代码来源:template-tags.php

示例2: _s_post_cats

 /**
  * Print categories list for post
  */
 function _s_post_cats()
 {
     if ('post' === get_post_type()) {
         /* translators: used between list items, there is a space after the comma */
         $categories_list = get_the_category_list();
         if ($categories_list && _s_categorized_blog()) {
             printf('<span class="meta-cats">' . esc_html__('Categories : %1$s', '_s') . '</span>', $categories_list);
         }
     }
 }
开发者ID:aptarmy,项目名称:_s,代码行数:13,代码来源:template-tags.php

示例3: _s_entry_footer

 /**
  * Prints HTML with meta information for the categories, tags and comments.
  */
 function _s_entry_footer()
 {
     // Hide category and tag text for pages.
     if ('post' === get_post_type()) {
         /* translators: used between list items, there is a space after the comma */
         $categories_list = get_the_category_list(esc_html__(', ', '_s'));
         if ($categories_list && _s_categorized_blog()) {
             printf('<span class="cat-links">' . esc_html__('Posted in %1$s', '_s') . '</span>', $categories_list);
             // WPCS: XSS OK.
         }
         /* translators: used between list items, there is a space after the comma */
         $tags_list = get_the_tag_list('', esc_html__(', ', '_s'));
         if ($tags_list) {
             printf('<span class="tags-links">' . esc_html__('Tagged %1$s', '_s') . '</span>', $tags_list);
             // WPCS: XSS OK.
         }
     }
     if (!is_single() && !post_password_required() && (comments_open() || get_comments_number())) {
         echo '<span class="comments-link">';
         comments_popup_link(esc_html__('Leave a comment', '_s'), esc_html__('1 Comment', '_s'), esc_html__('% Comments', '_s'));
         echo '</span>';
     }
 }
开发者ID:seankmchenry,项目名称:_s-skeleton,代码行数:26,代码来源:template-tags.php

示例4: _e

						<article role="article" class="page-content">
							<p><?php 
_e('It looks like nothing was found at this location. Maybe try one of the links below or a search?', '_s');
?>
</p>

							<?php 
get_search_form();
?>

							<?php 
the_widget('WP_Widget_Recent_Posts');
?>

							<?php 
if (_s_categorized_blog()) {
    // Only show the widget if site has multiple categories.
    ?>
							<div class="widget widget_categories">
								<h2 class="widget-title"><?php 
    _e('Most Used Categories', '_s');
    ?>
</h2>
								<ul>
								<?php 
    wp_list_categories(array('orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 10));
    ?>
								</ul>
							</div><!-- .widget -->
							<?php 
}
开发者ID:TMBR,项目名称:johnjohn,代码行数:31,代码来源:404.php

示例5: wp_link_pages

    wp_link_pages(array('before' => '<div class="page-links">' . __('Pages:', '_s'), 'after' => '</div>'));
    ?>
	</div><!-- .entry-content -->
	<?php 
}
?>

	<footer class="entry-meta">
		<?php 
if ('post' == get_post_type()) {
    // Hide category and tag text for pages on Search
    ?>
			<?php 
    /* translators: used between list items, there is a space after the comma */
    $categories_list = get_the_category_list(__(', ', '_s'));
    if ($categories_list && _s_categorized_blog()) {
        ?>
			<span class="cat-links">
				<?php 
        printf(__('Posted in %1$s', '_s'), $categories_list);
        ?>
			</span>
			<?php 
    }
    // End if categories
    ?>

			<?php 
    /* translators: used between list items, there is a space after the comma */
    $tags_list = get_the_tag_list('', __(', ', '_s'));
    if ($tags_list) {
开发者ID:ConPanna,项目名称:Twilio-For-WordPress,代码行数:31,代码来源:content.php


注:本文中的_s_categorized_blog函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。