第一步
下面的PHP代码放到子比文件:/wp-content/themes/zibll/inc/functions/zib-posts-list.php
的大概268行,如下图
$get_permalink = get_permalink();//添加文章链接
第二步
下面的PHP代码放到子比文件:/wp-content/themes/zibll/inc/functions/zib-posts-list.php
的大概310行,如下图
$html = '<a class="down" target="_blank" href="' . $get_permalink . '">查看文章</a>';//添加按钮
第三步
复制下面css,将css代码添加到自定义css代码
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
请登录后查看评论内容