0
worpress에서 데이터베이스 테이블 쿼리의 값만큼 드롭 다운을 만들어야합니다. foreach 드롭 다운 목록에서 usermeta 테이블에 게시물 데이터를 가져올 수 없습니다. 다음 코드입니다.변수 값으로 SELECT 드롭 다운에서 POST 데이터 가져 오기
$custom_posts_type = $wpdb->get_results("SELECT label,id FROM $table_name");
foreach ($custom_posts_type as $custom_post_type) {
$custom_post_type_name = $custom_post_type->label;
$custom_post_type_id = $custom_post_type->id;
?>
<p>
<label for="dropdown">Permisos de usuario para <?php echo $custom_post_type_name;?>: </label>
<?php
$user_custom_post = 'user_custom_' . $custom_post_type_name;
$selected = get_the_author_meta($user_custom_post, $user->ID);
$post_type_object = get_post_type_object($custom_post_type_name);
$label = $post_type_object->label;
$posts = get_posts(array('post_type'=> $custom_post_type_name, 'post_status'=> 'publish', 'suppress_filters' => false, 'posts_per_page'=>-1));
echo '<select name="' . $user_custom_post . '" id="' . $user_custom_post . '">';
?>
<option value="all" <?php selected($user_custom_post[0], "all"); ?>>All <?php echo $label;?></option>
<?php
foreach ($posts as $post) {
echo '<option value="', $post->ID, '"', $selected == $post->ID ? ' selected="selected"' : '', '>', $post->post_title, '</option>';
}?>
<?php
echo '</select>';
?>
</p>
<?php
update_user_meta($user->ID, $user_custom_post, $_POST[$user_custom_post]);
} //endforeach
감사합니다. Thks
당신이 게시 할 수 있습니다 생성 된 html이 어떻게 생겼는지, 그리고 양식에서 사용중인 어떤 메소드 속성에 따라 $ _GET 또는 $ _POST 변수를 "var_dump"하면 얻을 수있는 것 – flynorc
귀하의 의견을위한 Thumbs flynorc. "알림 : 정의되지 않은 색인 : user_custom_xxxxxxx"및 데이터베이스 저장 : "null" –
두 파일 (또는 코드 한 부분에 코드 2 개) ...