原始效果
二维码显示过小,而且不是局中,是靠左对齐;上方字体也是过小,字体没加粗;
解决方法
- 修改微慕小程序代码
- 外观自定义添加额外css
修改微慕微信小程序代码和在主题自定义加入css;
✅添加自定义css:
路径:wordprss后台👉外观👉自定义👉额外css
p img {
display: inline-block;
text-align: center;
}
✅修改微慕小程序代码
# 代码文件路径:/www/wwwroot/www.saiita.com.cn/wp-content/plugins/rest-api-to-miniprogram/includes/filter/ram-custom-content.php
# 在代码52行,style中添加代码:color: red; font-weight: bold;
$_content .= "<br /><hr style='width:100%;text-align:left;margin-left:2'><div style='width:100%,margin-top:20px;text-align:center;color: red; font-weight: bold;'>" . $message . $qrcode . "</div>";
✅完整代码
<?php
//解析腾讯视频,只支持一个腾讯视频
function custocm_content_filter($content)
{
$_content = $content;
if (is_single()) {
$vcontent = get_post_qq_video($content);
if (!empty($vcontent)) {
$_content = $vcontent;
}
}
$postId = get_the_ID();
$excitationAd = empty(get_post_meta($postId, '_excitation', true)) ? "0" : get_post_meta($postId, '_excitation', true);
$post = get_post($postId);
$minapper_qrcode_url = empty(get_option('wf_minapper_qrcode_url')) ? '' : get_option('wf_minapper_qrcode_url');
$display_qrcode = empty(get_option('wf_detail_bottom_display_qrcode')) ? '0' : get_option('wf_detail_bottom_display_qrcode');
$excerpt = empty($post->post_excerpt) ? "" : $post->post_excerpt;
if (strlen($excerpt) < 1 && strlen($_content) > 0) {
$excerpt = ram_rewrite_content($_content, 500);
}
$message='';
if (is_single()) {
$message = '微信扫描下方的二维码阅读本文<br/><br/>';
if ($excitationAd == '1') {
$message = '微信扫描下方的二维码阅读全文<br/><br/>';
$_content = $excerpt;
}
if($display_qrcode == '1')
{
$qrcode=creat_minapper_qrcode($postId);
$qrcode=$qrcode['qrcodeUrl'];
$qrcode = "<p><img width='200' src='" .$qrcode. "' ></p>";
$_content .= "<hr style='width:100%;text-align:left;margin-left:2'><div style='width:100%,margin-top:20px;text-align:center;color: red; font-weight: bold;'><br/><br/>" . $message . $qrcode . "</div>";
}
else
{
if ($excitationAd == '1') {
$message = '微信扫描下方的二维码阅读本文<br/><br/>';
$qrcode = "<p><img width='150' src='" . $minapper_qrcode_url . "' ></p>";
$_content .= "<br /><hr style='width:100%;text-align:left;margin-left:2'><div style='width:100%,margin-top:20px;text-align:center;color: red; font-weight: bold;'>" . $message . $qrcode . "</div>";
}
}
}
return $_content;
}
手机观看扫描下方微信小程序二维码
本作品采用知识共享署名-相同方式共享 4.0 国际许可协议进行许可。
暂无评论
要发表评论,您必须先 登录