0

ここhttp://smallbusinessauthority.com.au/blog/、href は投稿日の横にある著者メタの "[ ]" で表示されます。コードはフッター html タグを使用しています。フッター タグを削除すると、正常に動作します。

<footer class="entry-meta">
                        <span class="by-author">By <span class="author vcard"><a class="url fn n" href="http://smallbusinessauthority.com.au/author/admin/" title="View all posts by admin" rel="author">admin</a></span></span> on <a href="http://smallbusinessauthority.com.au/objectives-management-the-key-to-success-for-the-largest-to-the-smallest-businesses-and-what-the-solution-providers-dont-tell-you/" title="8:59 am" rel="bookmark"><time class="entry-date" datetime="2013-07-29T08:59:20+00:00">July 29, 2013</time></a>.                    </footer>

このブログページにはサイドバーも表示されません。すべての設定はサイドバーに対して正しく、ファイル内で適切に調整されています。

テンプレート ファイルのコード: " style="margin-left:30px;"> " title="" rel="bookmark">

    <footer class="entry-meta">
        <?php if ( is_single() ) : ?>
            <?php //twentytwelve_entry_meta(); ?>
        <?php else : ?>
            <?php twentytwelve_entry_meta(); ?>
        <?php endif; ?>
    </footer><!-- .entry-meta -->
    </header><!-- .entry-header -->

    <?php if ( is_search() ) : // Only display Excerpts for Search ?>
    <div class="entry-summary">
        <?php the_excerpt(); ?>
    </div><!-- .entry-summary -->
    <?php elseif ( is_single() ) : ?>
    <div class="entry-content" style="padding-bottom:20px; padding-top:0px;">
        <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>
    </div>
    <?php else : ?>
    <div class="entry-content" style="padding-bottom:20px; padding-top:0px;">
        <?php echo substr(get_the_content(), 0 , 300). "...."; //the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>
        <a href="<?php echo the_permalink(); ?>">Read More</a>
    </div><!-- .entry-content -->
    <?php endif; ?>
</article><!-- #post -->
4

1 に答える 1

0

あなたが説明している問題は、CSS の次のコード行が原因です。

footer a[rel=bookmark]:link:after,
footer a[rel=bookmark]:visited:after {
    content: " [" attr(href) "] "; /* Show URLs */
}

( http://smallbusinessauthority.com.au/wp-content/themes/SBA/style.css?ver=3.5.1 )。

フッターの周りに[とを配置します。]独自の CSS クラスでそれをオーバーライドするか、可能であれば削除できます。これは基本的にhref属性をラップし、それ[]をリンクのコンテンツとして配置します。

詳細については、 http://www.quirksmode.org/css/content.htmlを参照してください。

于 2013-08-07T17:15:38.540 に答える