私はこのコードを手に入れました.2つのリターンが欲しいのですが、どのようにそれを作るのが正しいですか? (PHP)
function two_tables($atts, $content = null) {
return '<div id="table1"><table class="table table-bordered">'.$content.'</table></div>';
return '<div id="table2"><table class="table table-bordered">'.$content.'</table></div>';
}