/
www
/
wwwroot
/
fxdst.com
/
wp-content
/
themes
/
fxdst
/
templates
/
Upload File
HOME
<?php /* * @Theme Name:WebStack * @Theme URI:https://www.iotheme.cn/ * @Author: iowen * @Author URI: https://www.iowen.cn/ * @Date: 2019-02-22 21:26:02 * @LastEditors: iowen * @LastEditTime: 2024-07-30 21:03:08 * @FilePath: /WebStack/templates/site-card.php * @Description: */ if ( ! defined( 'ABSPATH' ) ) { exit; } ?> <?php $title = $link_url; $is_html = ''; $tooltip = 'data-toggle="tooltip" data-placement="bottom"'; if(get_post_meta($post->ID, '_wechat_qr', true)){ $title="<img src='" . esc_url(get_post_meta(get_the_ID(), '_wechat_qr', true)) . "' width='128' alt='" . esc_attr(get_the_title()) . " 二维码'>"; $is_html = 'data-html="true"'; } else { switch(io_get_option('po_prompt')) { case 'null': $title = get_the_title(); $tooltip = ''; break; case 'url': if($link_url=="") $title = __('地址错误!','i_theme'); break; case 'summary': $title = get_post_meta($post->ID, '_sites_sescribe', true); break; case 'qr': if($link_url=="") $title = __('地址错误!','i_theme'); else{ $title = "<img src='//api.qrserver.com/v1/create-qr-code/?size=150x150&margin=10&data=" . rawurlencode($link_url) . "' width='128' alt='" . esc_attr(get_the_title()) . " 二维码'>"; $is_html = 'data-html="true"'; } break; default: } } $url = ''; $blank = ''; if(io_get_option('details_page')){ $url=get_permalink(); }else{ if($link_url==""){ $url = get_permalink(); $blank = ''; }else{ if(io_get_option('is_go')) $url = home_url().'/go/?url='.base64_encode($link_url) ; else $url = $link_url; } } $ico = io_theme_get_thumb(); //判断是不是文章 post if(get_post_type() == 'post'){ $title = ''; $url = get_permalink(); }else{ $ico = $ico ?: (io_get_option('ico_url') . format_url($link_url) . io_get_option('ico_png')); } ?> <a href="<?php echo esc_url($url); ?>"<?php echo $blank ? ' target="' . esc_attr($blank) . '" rel="noopener"' : ''; ?> class="xe-widget xe-conversations box2 label-info" <?php echo $tooltip . ' ' . $is_html ?> title="<?php echo $title ?>"> <div class="xe-comment-entry"> <div class="xe-user-img"> <?php if(io_get_option('lazyload')): ?> <img class="img-circle lazy" src="<?php echo esc_url($default_ico); ?>" data-src="<?php echo esc_url($ico); ?>" onerror="javascript:this.src='<?php echo esc_url($default_ico); ?>'" width="40" height="40" alt="<?php echo esc_attr(get_the_title()); ?>" loading="lazy" decoding="async"> <?php else: ?> <img class="img-circle lazy" src="<?php echo esc_url($ico); ?>" onerror="javascript:this.src='<?php echo esc_url($default_ico); ?>'" width="40" height="40" alt="<?php echo esc_attr(get_the_title()); ?>" loading="lazy" decoding="async"> <?php endif ?> </div> <div class="xe-comment"> <div class="xe-user-name overflowClip_1"> <strong><?php the_title() ?></strong> </div> <p class="overflowClip_1"><?php echo get_post_meta($post->ID, '_sites_sescribe', true) ?: preg_replace("/(\s|\ \;| |\xc2\xa0)/","",get_the_excerpt($post->ID)); ?></p> </div> </div> </a>