为了账号安全,请及时绑定邮箱和手机立即绑定

萌新求问 php怎么在 return'. .' 里面调用<?php ; ?>

萌新求问 php怎么在 return'. .' 里面调用<?php ; ?>

PHP
千巷猫影 2019-03-08 10:21:19
php怎么在 return'' 里面调用这个输出<?php echo _get_post_views(); ?>我用的是 wordpress if ( !function_exists( 'vlog_post_format_icon' ) ): function vlog_post_format_icon() { $format = vlog_get_post_format(); $icons = array( 'video' => __vlog( 'label_video' ), 'audio' => __vlog( 'label_audio' ), 'image' => __vlog( 'label_image' ), 'gallery' => __vlog( 'label_gallery' ) ); //Allow plugins or child themes to modify icons $icons = apply_filters( 'vlog_modify_post_format_icons', $icons ); if ( $format && array_key_exists( $format, $icons ) ) { return '怎么在这里调用<?php echo _get_post_views(); ?>'; } return ''; } endif; <?php echo _get_post_views(); ?>该怎么写?
查看完整描述

2 回答

?
繁花不似锦

TA贡献1851条经验 获得超4个赞

if ( $format && array_key_exists( $format, $icons ) ) {
    return '怎么在这里调用<?php echo _get_post_views(); ?>';
}

改:

if ( $format && array_key_exists( $format, $icons ) ) {
    echo _get_post_views();
    return '';
}
查看完整回答
反对 回复 2019-03-18
?
子衿沉夜

TA贡献1828条经验 获得超3个赞

return '怎么在这里调用'._get_post_views();
查看完整回答
反对 回复 2019-03-18
  • 2 回答
  • 0 关注
  • 416 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信