私はPHPの初心者なので、この質問はばかげているかもしれません。
jquery スライダーから画像のタイトルとキャプションを取得したいと思います。(Themeforest Delight テーマ - http://www.pixedelic.com/themes/delight/ )、( http://themes.themegoods.com/dk_wp/ )と同じ方法で表示します。
私はほとんどすべてを試しました。
よろしくお願いします。
ヘッダーのコードは次のとおりです。
<?php
function default_bg(){
if(get_pix_option('pix_general_background')=='slideshow'){ ?>
<div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not">
<?php
$slide_general = get_pix_option('pix_array_slide_general_');
foreach ($slide_general as $slide) {
echo '<div data-src="'. $slide .'" data-thumb="'. get_pix_thumb($slide, 'exTh') .'" data-content="'. get_pix_content($slide) .'"></div>';
}
?>
コンテンツを取得するスクリプトを見つけましたが、実装できません。
ここにあります:
content: jQuery('#pix_credits_pictures').html(),
events: {
show: function(event, api) {
api.set('content.text', jQuery('#pix_credits_pictures').html());
}
},