コード例 #1
0
/**
 * Grab the first shortcode in post content, strip it out, and
 * display the post content without the first gallery.
 */
if ($gallery_shortcode && is_array($gallery_shortcode)) {
    $content = str_replace($gallery_shortcode[0][0], '', $content);
}
echo apply_filters('the_content', $content);
?>
	</div><!-- .entry-content -->

	<footer class="entry-footer entry-meta">
		<?php 
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_term_list($post->ID, 'jetpack-portfolio-type', '', __(', ', 'argent'));
if ($categories_list && argent_categorized_blog()) {
    printf('<span class="cat-links">' . __('Posted in %1$s', 'argent') . '</span>', $categories_list);
}
/* translators: used between list items, there is a space after the comma */
$tags_list = get_the_term_list($post->ID, 'jetpack-portfolio-tag', '', __(', ', 'argent'));
if ($tags_list) {
    printf('<span class="tags-links">' . __('Tagged %1$s', 'argent') . '</span>', $tags_list);
}
?>

		<?php 
edit_post_link(__('Edit', 'argent'), '<span class="edit-link">', '</span>');
?>
	</footer><!-- .entry-meta -->
</article><!-- #post-## -->
コード例 #2
0
ファイル: 404.php プロジェクト: nitaibezerra/Argent-Neue
			<p><?php 
_e('It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'argent');
?>
</p>

			<?php 
get_search_form();
?>
			<div class="widget-container">
			<?php 
$args = array('before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>');
the_widget('WP_Widget_Recent_Posts', 'number=5', $args);
?>

			<?php 
if (argent_categorized_blog()) {
    // Only show the widget if site has multiple categories.
    ?>
			<div class="widget widget_categories">
				<h3 class="widget-title"><?php 
    _e('Popular Categories', 'argent');
    ?>
</h3>
				<ul>
				<?php 
    wp_list_categories(array('orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 10));
    ?>
				</ul>
			</div><!-- .widget -->
			<?php 
}
コード例 #3
0
 /**
  * Prints HTML with meta information for the categories, tags and comments.
  */
 function argent_entry_meta()
 {
     // 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(__(', ', 'argent'));
         if ($categories_list && argent_categorized_blog()) {
             printf('<span class="cat-links">' . esc_html__('Posted in %1$s', 'argent') . '</span>', $categories_list);
         }
         /* translators: used between list items, there is a space after the comma */
         $tags_list = get_the_tag_list('', __(', ', 'argent'));
         if ($tags_list) {
             printf('<span class="tags-links">' . esc_html__('Tagged %1$s', 'argent') . '</span>', $tags_list);
         }
     }
     if (!is_single() && !post_password_required() && (comments_open() || get_comments_number())) {
         echo '<span class="comments-link">';
         comments_popup_link(esc_html__('Leave a comment', 'argent'), esc_html__('1 Comment', 'argent'), esc_html__('% Comments', 'argent'));
         echo '</span>';
     }
     edit_post_link(esc_html__('Edit', 'argent'), '<span class="edit-link">', '</span>');
 }