コード例 #1
0
ファイル: single.php プロジェクト: Lanseria/limonplayer
<?php

get_header();
?>
<div class="content-wrap">
	<div class="content">
<?php 
if (dopt('d_singleMenu_b')) {
    echo '<div class="breadcrumbs">' . deel_breadcrumbs() . '</div>';
}
?>

		<?php 
while (have_posts()) {
    the_post();
    ?>
		<header class="article-header">
			<style type="text/css">.article-content h2 {border-left: 8px solid #00A67C; border-bottom: 2px solid #00A67C; }</style>
			<h1 class="article-title"><a href="<?php 
    the_permalink();
    ?>
"><?php 
    the_title();
    ?>
</a></h1>
			<div class="meta">
				<?php 
    $category = get_the_category();
    if ($category[0]) {
        echo '<span id="mute-category" class="muted"><i class="fa fa-list-alt"></i><a href="' . get_category_link($category[0]->term_id) . '"> ' . $category[0]->cat_name . '</a></span>';
    }
コード例 #2
0
ファイル: single.php プロジェクト: sunyang3721/wdy-wordpress
<?php

get_header();
?>
<div class="content-wrap">
	<div class="content">
		<div class="breadcrumbs"><?php 
echo deel_breadcrumbs();
?>
</div>
		<?php 
while (have_posts()) {
    the_post();
    ?>
		<header class="article-header">
			<h1 class="article-title"><a href="<?php 
    the_permalink();
    ?>
"><?php 
    the_title();
    ?>
</a></h1>
			<div class="meta">
				<?php 
    $category = get_the_category();
    if ($category[0]) {
        echo '<span class="muted"><a href="' . get_category_link($category[0]->term_id) . '"><i class="icon-list-alt icon12"></i> ' . $category[0]->cat_name . '</a></span>';
    }
    ?>
				<span class="muted"><i class="icon-user icon12"></i> <a href="<?php 
    echo get_author_posts_url(get_the_author_meta('ID'));