2
function theme_options_panel(){ add_menu_page( 'ss title'、 'social share'、 'manage_options'、 'theme-options'、 'ss_callback');wordpressプラグインを使ったHTMLのフォームアクション?
}
add_action('admin_menu', 'theme_options_panel');
関数ss_callback(){
$html .='<form action="index.php/wp-content/plugins/social_media/ss_query.php" method="post">';
$html .= '<br> <br>';
$html .= '<p class="description">';
$html .= 'Upload your social link here.';
$html .= '</p>';
$html .= 'Facebook:'.'<input type="URL" name="fb" value="" />';
$html .= '</br>';
$html .= 'Twitter:'.'<input type="URL" name="tw" value="" />';
$html .= '</br>';
$html .= 'Linkedin:' . '<input type="URL" name="lin" value="" />';
$html .= '</br>';
$html .= '<input type="submit" name="submit" value="Save">';
$html .= '</form>';
echo $html;
}
質問は何ですか?何がうまくいかないの? –