在主页和页面上禁用作者框

时间:2015-04-04 作者:Peter Huy

我在条目中添加了Authorbox代码。邮政编码和;评论。

但是authorbox也显示在页面上&;主页。

任何解决方案,使其仅在帖子上可见

这是我的authorbox的代码

<table style="border: solid 1px #ffffff;width:100%;">
    <tbody>
    <tr>
    <td>
    <h3><b><span style="color: #555; ">About Author</span>&nbsp;</b>
    <input type="hidden" name="stats" value="2498">
    </h3>you can be an author too, join us and show you skills</td>
    <td style="border: solid 1px #ffffff;" align="right">
    <a href="http://mhktricks.net/user-registration/" target="_blank">
    <input class="p2graybtn" style="height: 26px; width:150px;" type="button" value="Join Us">
    </a>
    </td>
    </tr>
    </tbody>
    </table>
    <hr>
    <table style="border: solid 1px #ffffff;">
    <tbody>
    <tr>
    <td>

    <?php echo get_avatar( get_the_author_meta( \'user_email\' ), 125 ); ?>
    </td>
    <td style="border: solid 1px #ffffff;">
    <table style="border: solid 1px #ffffff;">
    <tbody>
    <tr>
    <td>
    <span style="color: #555;font-size:20px;font-family: Open Sans;font-weight: 400;font-style: normal;text-decoration: none;">
    <?php echo get_the_author(); ?>
    </span>
    <br><div style="margin-left:1px;">
    <?php echo get_author_role(); ?>

    <span style="position:relative;top:1px;margin-left:5px;"><img src="http://i2.wp.com/codex.iz.net/img/verified.png" height="12" width="12"></span>
    </div>
    </td>
    <td style="border: solid 1px #ffffff;">
    <div style="margin-left: 3px;margin-top: -17px;border: #B8B8B8 1px solid;border-radius:2px;padding: 0px 5px 0px 5px;font-size:10px;">
    <?php the_author_posts(); ?> POSTS</div>
    </td>
    </tr>
    </tbody>
    </table><div style="margin-top:-12px;">&nbsp;
    </div>
    <div style="margin-left:3px;margin-top:2px;padding-right:60px;">
    <?php the_author_meta( \'description\' ); ?> 
<hr color="white">
<div onclick="window.open(\'<?php echo esc_url( get_author_posts_url( get_the_author_meta( \'ID\' ) ) ); ?>\',\'mywindow\');" style="display: inline-block;margin-left: 3px;margin-top: 16px;border: rgb(69, 122, 234) 1px solid;background: rgb(85, 136, 244);border-radius:2px;padding: 0px 5px 0px 5px;font-size: 10px;color: white;cursor: hand;cursor: pointer;">READ MORE BY ME</div>

    <?php get_the_author(); ?>
    <span class="meta-nav">&rarr;</span>
    </a>        
    </div>
    </td>   
    </tr>
    </tbody>
    </table>
    <hr color="white">
    <hr color="white">
    <table style="border: solid 1px #ffffff;width:100%;">
    <tbody>
    <tr>
    <td>
    <h3><b><span style="color: #555; ">Discussion</span></b></h3>
      share your knowledge.mind to help others</td>
    <td style="border: solid 1px #ffffff;" align="right">
    <a href="#" class="show-comments">
    <input class="p2graybtn" style="height: 26px;" type="button" value="Toggle Comments">
    </a>
    </td>
    </tr>
    </tbody>
    </table>

1 个回复
SO网友:kovshenin

当我们可以看到您的代码时,可以更容易地提供帮助。但你可以尝试以下方法:

if ( is_singular( \'post\' ) ) {
    // Your author bio code
}
希望有帮助!

结束

相关推荐

Converting Posts to Pages

所以我的网站后端有问题,我的托管公司已经为我解决了。在这样做的过程中,他们无意中制作了我所有的页面和帖子。我正在查看承载此功能的数据库post_type 柱我的问题是,如果我更改值post 到page, 这篇文章会再次成为一页吗?如果没有,我如何转换它们?