2016-07-31 9 views
0

Wie kann ich erreichen Gallery Pro Plugin Tabelle in mysql um wordpress?Gallery Pro Tabelle in MySQL bei WordPress

I Need Gallery Pro Plugin Abfrage finden Um zu zeigen, zeigen Galerie Bilder On App Via REST-API

Bei Admin Panel I In Galerie Neues Bild hinzufügen Mit Funktionscode [WG id=1606] Es Row Machen In wp_posts Tabelle

Wenn I In Bild vom PC Es Neue Zeile hinzufügen Mit post_parent = '1606'

Aber wenn ich Bild hinzufügen Allready On Server hochgeladen Es fügt keine Zeile wp_posts Tabelle

+2

Haben Sie sie gefragt? – Strawberry

+0

@Strawberry Wie kann ich sie fragen? – AndroSco

+1

Nun, sie haben eine Supportseite. Ich würde dort anfangen. https://wordpress.org/support/plugin/gallery-pro – Strawberry

Antwort

0

Ich fand Lösung:

$lksg_Id = '1606'; 
    $TotalImg = get_post_meta($lksg_Id, 'lksg_total_images_count', true); 
    $lksg_Gallery_Settings = "lksg_Gallery_Settings_".$lksg_Id; 
    $lksg_AllPhotosDetails = unserialize(base64_decode(get_post_meta($lksg_Id, 'lksg_all_photos_details', true))); 
    // echo 'All Photos Details : <br /> ' . var_dump($lksg_AllPhotosDetails) . '<br /><br /><br />'; 
    if(count($lksg_Gallery_setting)) { 
     $lk_gallery_title  = $lksg_Gallery_setting['lk_gallery_title']; 
     $lk_show_image_label  = $lksg_Gallery_setting['lk_show_image_label']; 
     $lk_Gallery_Layout  = $lksg_Gallery_setting['lk_Gallery_Layout']; 
     $wgp_Color   = $lksg_Gallery_setting['wgp_Color']; 
     $lk_label_Color    =  $lksg_Gallery_setting['lk_label_Color']; 
     $lk_desc_font_Color   =  $lksg_Gallery_setting['lk_desc_font_Color']; 
     $lk_btn_Color    =  $lksg_Gallery_setting['lk_btn_Color']; 
     $lk_btn_font_Color  =  $lksg_Gallery_setting['lk_btn_font_Color']; 
     $lk_font_style   =  $lksg_Gallery_setting['lk_font_style']; 
     $lk_Custom_CSS   =  $lksg_Gallery_setting['lk_Custom_CSS']; 
     $lk_show_img_desc  =  $lksg_Gallery_setting['lk_show_img_desc']; 
     $lk_Light_Box   =  $lksg_Gallery_setting['lk_Light_Box']; 
     $lk_open_link   =  $lksg_Gallery_setting['lk_open_link']; 
     $lk_button_title  =  $lksg_Gallery_setting['lk_button_title']; 
    } 
    // echo 'Gallery setting : ' . var_dump($lksg_Gallery_setting) . '<br /><br /><br />'; 
    // echo 'Total Img : ' . var_dump($TotalImg) . '<br /><br /><br />'; 
    $results = array(); 
    if($TotalImg) { 
     foreach($lksg_AllPhotosDetails as $data) { 
      // echo 'data : <br /> ' . var_dump($data) . '<br /><br /><br />'; 
      $item = new stdclass(); 
      // $item->id = $data->ID; 
      $item->title = $data['lksg_image_label']; 
      $item->content = $data['img_desc']; 
      $item->image = $data['lksg_image_url']; 
      $item->tbn = $data['lksg_img_medium']; 
      $results[] = $item; 
     } 
    } 
    // Finally Return Array As Json String