WordPress横幅广告CSS+文章顶部最后更新时间添加|适用7B2

1.广告添加

将以下内容添加到你的公共CSS文件中

/*横幅广告条CSS*/
.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.alert-dismissible {
    padding-right: 3rem;
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

@media (prefers-reduced-motion: reduce){
    .fade {
        transition: none;
    }
}
.fade {
    transition: opacity .15s linear;
}
.bg-danger {
    background-color: #dc3545!important;
}
.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}
.bg-warning {
    background-color: #ffc107!important;
}
.text-dark {
    color: #212529!important;
}
.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem;
}
.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    border: 0;
    border-radius: .25rem;
    opacity: .5;
}

@media (prefers-reduced-motion: reduce){
    .spinner-border, .spinner-grow {
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
    }
}
.spinner-grow-sm {
    width: 1rem;
    height: 1rem;
}
.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: .75s linear infinite spinner-grow;
    animation: .75s linear infinite spinner-grow;
}
.small, small {
    font-size: .875em;
}
@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: none;
  }
}
.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: .75;
}
sup.spinner-grow.spinner-grow-sm.ml-1.small {
    margin-left: 4px;
    margin-bottom: 4px;
}

B2主题设置模块添加新模块调用内容(自定义)添加以下html内容:

<div class="alert alert-warning alert-dismissible fade show" role="alert">
  <strong>
    <span class="badge bg-danger">Hello,舰长!</span></strong>【星空GAMES】---全站游戏、美化、金手指资源免费看任意下,别错过哦,没钱也没关系,多数都是免费的!
  <a class="badge bg-warning text-dark" href="/vips" target="_blank" rel="nofollow noopener noreferrer">加入我们</a></div>

2.文章内页修改

[hide]

打开路径/www/wwwrootgame.itzkb.cn/wp-content/themes/b2/TempParts/Single

选择你对应模板的文件(b2主题有5个文件)

搜索在其下追加以下内容:<div class="entry-content">

<div class="alert alert-warning alert-dismissible fade show" role="alert" style="text-align: center;">
  <strong>
    <span class="badge bg-danger">本文最新更新时间
      <sup aria-hidden="true" class="spinner-grow spinner-grow-sm ml-1 small" role="status" style=" width: .5rem; height: .5rem; "></sup></span>
  </strong>
  <span>
    <?php the_modified_time( 'Y年n月d日'); ?></span>
</div>

 

至此,刷新文章查看效果

[/hide]

© 版权声明
THE END
喜欢就支持一下吧
点赞11 分享
评论 抢沙发

    暂无评论内容