jQuery('#table_1 tbody tr').each(function() {
var $this = jQuery(this);
city = $this.find("td").eq(1).text();
});
var newc = jQuery('#table_1_1_filter button.dropdown-toggle .filter-option')[0]; выводится: <span class="filter-option pull-left">Москва</span> Но, затем я не могу получить даже текст из span var title1 = newc.textContent; var title2 = newc.innerHTML; var title3 = newc.text(); console.log(title1,title2,title3);
Непонятно, зачем здесь бутстрап приплетать.
ReferenceError: setCookie is not defined
add_action( 'woocommerce_order_status_changed', 'deleteCookie', 99, 3 );
function deleteCookie($order_id, $old_status, $new_status) {
if( ($new_status == "completed") || ($new_status == "processing") ) {
?>
<script>
setCookie('fooboo', "", {
expires: -1
});
</script>
<?php }
}
<div class="row">
<?php $post_type = 'recipe';
$taxonomies = get_object_taxonomies( array( 'post_type' => $post_type ) );
foreach( $taxonomies as $taxonomy ) :
$args = array( 'post_type' => $post_type, 'posts_per_page' => 6);
$posts = new WP_Query($args);
if( $posts->have_posts() ): ?>
<?php while( $posts->have_posts() ) : $posts->the_post(); ?>
<div class="col-md-4 col-sm-6 col-12 mb-5">
<?php if(has_post_thumbnail()) { ?>
<a href="<?php the_permalink() ?>"><?php the_post_thumbnail('recipe-thumb'); ?></a>
<?php } ?>
<div class="label-text mt-3">
<a href="<?php the_permalink() ?>" class="text-title"><?php echo get_the_title(); ?></a>
</div>
</div>
<?php endwhile; wp_reset_postdata();
endif;
endforeach; ?>
</div>
'exclude_from_search' => true, // Исключить ли записи из результатов поиска фронтэнда. По умолчанию: значение аргумента 'public'.