wp_enqueue_script('main', 'path', [], null, true);
wp_localize_script('main', 'php_data', ['homeUrl' => home_url()]);
const url = php_data.homeUrl;
wp_enqueue_style( 'visit_scripts');
$(".block").each(function() {
if ($(this).height() > 200) {
// показываем кнопку
} else {
// не показываем
}
});