0

私は WordPress 用にこのショートコードを書きましたが、問題は私の弱い PHP 知識にあると確信しています。

関数がショートコードで完全にreturn $full_liveshot_url_fetch出力され、完全な URL を取得するとget_file_content()、ページを返す関数を追加すると失敗し、次の警告が表示されます: file_get_contents("xxx xxxx xxxx.....): failed toストリームを開く:

関数の外で同じことをするとうまくいきます...

function live_shot_code($markup) {  //just to checheck that a url is filled out and set a default
    if(!isset($markup['url'])) $markup['url'] = 'http://itmastersworld.com/liveshot/nothingset/';

    $full_liveshot_url_fetch = '"http://itmastersworld.com/liveshot/getImage.php?url='.$markup['url'].'&title='.$markup['title'].'&width='.$markup['width'].'&height='.$markup['height'].'&quality='.$markup['quality'].'&zoom='.$markup['zoom'].'"';
    $done_getting = file_get_contents($full_liveshot_url_fetch);
    return $done_getting;
}
add_shortcode('wpliveshot', 'live_shot_code');
4

0 に答える 0