php WP Shortcode加载远程内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WP Shortcode加载远程内容相关的知识,希望对你有一定的参考价值。

function show_file_func( $atts ) {
  extract( shortcode_atts( array(
    'file' => ''
  ), $atts ) );
 
  if ($file!=''){
    $request = wp_remote_get($file);
    $response = wp_remote_retrieve_body( $request );
    return $response;
  }
}
 
add_shortcode( 'show_file', 'show_file_func' );

以上是关于php WP Shortcode加载远程内容的主要内容,如果未能解决你的问题,请参考以下文章

将WP Shortcode添加到模板

WP Shortcode-检索作者页url

在 WP Shortcode 中显示来自 mySQL 的数据字段

在WordPress中使用add_shortcode()在主页中创建内容部分

php SHORTCODE:将“类型”字段修剪为“字数”

php 媒体查询ShortCode