0

我正在努力简化我的 WordPress 日志的设计。对于出现在帖子或帖子标题上方的元数据,我想要的只是它出现在一个单一的、相当不起眼的行中。

伪代码如下所示:

$date $category $edit

它实际上看起来像在这里:http: //johnlaudun.org/20120828-isaac-at-9pm/

这一行的 CSS 是:

.entry-meta {
    font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
    font-size: .75em;
    text-transform: uppercase;
}

.entry-meta p {
    white-space: nowrap;
}

.entry-meta a {text-decoration: none;}
.entry-meta .date {color: #000;}
.cat-links a {color: #436EEE;}
.edit-link a {color: orange;}

PHP是:

<div class="entry-meta">

<p>             
    <?php if ( ! is_page() ) : ?>
    <a href="<?php the_permalink(); ?>">
    <?php the_time( 'Y M d' ); ?></a>
    <?php endif; ?> &nbsp;

    <span class="cat-links">
    <?php the_category( ', ' ); ?></span>

    <span class="edit-link">
    <?php edit_post_link( __( 'Edit', 'chunk' ) ); ?></span>

</p>
</div>

它向浏览器生成以下输出:

<div class="entry-meta">
        <p>

                        <a href="http://johnlaudun.org/20120828-isaac-at-9pm/">
            2012 Aug 28</a>
             &nbsp;

            <span class="cat-links">
            <a href="http://johnlaudun.org/category/status-2/" title="View all posts in status" rel="category tag">status</a></span>

            <span class="edit-link">
            <a class="post-edit-link" href="http://johnlaudun.org/wordpress/wp-admin/post.php?post=5052&amp;action=edit" title="Edit Post">Edit</a></span>

        </p>
    </div>

从我的角度来看,我错过了什么是在应该是相当简单的输出中插入某种换行符?

4

1 回答 1

1

看看 style.css,第 191 行:

.cat-links, .tag-links {
  display: block;
}

尝试:display: inline;

于 2012-08-29T14:48:43.627 回答