Bootstrap 3.4.0 を使用して最初のカスタム Wordpress テーマを最初から作成しました (やったー!)、しかし、私のジャンボトロン セクションは私の電話画面で応答しません...何か間違ってキューに入れたかどうか疑問に思っていますか?
私のスタイルシートとスクリプトは次のとおりです。
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay"
crossorigin="anonymous"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
そして、これが私のjs.mainドキュメントです:
function custom_setup(){
wp_enqueue_style ('google-fonts', 'https://fonts.googleapis.com/css?family=Oswald');
wp_enqueue_style ('google-fonts', 'https://fonts.googleapis.com/css?family=Roboto');
wp_enqueue_style ('fontawesome', '//use.fontawesome.com/releases/v5.8.2/css/all.css');
wp_enqueue_style ('boot', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
wp_enqueue_style('style', get_stylesheet_uri(), NULL, microtime(), all);
wp_enqueue_script( 'boot1','https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js');
wp_enqueue_scrit ('boot2', 'https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css');
wp_enqueue_script("main", get_theme_file_uri('/js/main.js'), NULL, microtime(), true);
}
add_action('wp_enqueue_scripts', 'custom_setup'); ```