文章卡片下载按钮样式美化/子比美化

给子比主题卡片样式下面加一个下载按钮样式,非常美观,给自己的子比主题去加一个吧

图片[1]-文章卡片下载按钮样式美化/子比美化 - 凡星爱分享-凡星爱分享

设置教程

第一步

下面的PHP代码放到子比文件:/wp-content/themes/zibll/inc/functions/zib-posts-list.php的大概268行,如下图

图片[2]-文章卡片下载按钮样式美化/子比美化 - 凡星爱分享-凡星爱分享
$get_permalink = get_permalink();//添加文章链接

第二部

下面的PHP代码放到子比文件:/wp-content/themes/zibll/inc/functions/zib-posts-list.php的大概310行,如下图

图片[3]-文章卡片下载按钮样式美化/子比美化 - 凡星爱分享-凡星爱分享
$html = '<a class="down" target="_blank" href="' . $get_permalink . '">查看文章</a>';//添加查看文章按钮

第三步

下方css代码放到子比自定义代码css里面

background: linear-gradient(to right, #4f6dee, #67bdf9);这个是颜色,自己需求改

/*文章卡片查看文章按钮*/
a.down {
    display: inline-block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    background: linear-gradient(to right, #4f6dee, #67bdf9);
    color: #fff;
    text-align: center;
    cursor: pointer
    text-shadow: none;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}
© 版权声明
THE END
喜欢就支持一下吧
点赞133赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容