Slide 37
Slide 37 text
BOOTSTRAP
// functions.php
$bootstrap = array();
global $wp_query;
while ( $wp_query->have_posts() ) {
$wp_query->the_post();
$bootstrap[] = array(
"id" => get_the_ID(),
"title" => array(
"rendered" => get_the_title()
)
);
}
$bootstrap_json = json_encode( $bootstrap );
wp_register_script( 'bs-script', ... );
wp_localize_script( 'bs-script', 'bootstrap_json', $bootstrap_json );
wp_enqueue_script( 'bs-script' );