WordPress
3
Вклад в тег
add_action('admin_bar_init', function(){
add_action('wp_before_admin_bar_render', 'adminbar_styles');
});
function adminbar_styles(){
if( is_admin() ) return;
echo preg_replace('/[\n\t]/','','
<style>
@media (max-width:768px) {
#wpadminbar {display:none;}
html {margin-top:0!important;}
}
</style>')."\n";
}
<h2><?php the_field('items','ID'); ?></h2>