или такую тему только с нуля писать?
position: absolute;
top: 1px;
left: 1px;
right: 1px;
bottom: 1px;
html, body {
overflow-x: hidden;
}
<h1 class="title">Text</h1>
<style>
.title{
font-family: Arial;
-webkit-text-fill-color: transparent;
background: url(images.png);
background-size: 8%;
-webkit-background-clip: text;
}
</style>
<form class="clear-cart" action="<?php echo esc_url( wc_get_cart_url() ); ?>" method="post"><button type="submit" onclick='javascript:if(!confirm("Удалить все товары из корзины?")) {return false;}' class="button" name="clear-cart">Очистить корзину</button></form>
add_action('init', 'woocommerce_clear_cart_url');
function woocommerce_clear_cart_url() {
global $woocommerce;
if( isset($_REQUEST['clear-cart']) ) {
$woocommerce->cart->empty_cart();
}
}
<?php
$args = array(
'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1 ),
'post_type' => 'post',
'suppress_filters' => true, // подавление работы фильтров изменения SQL запроса
);
query_posts( $args );
while ( have_posts() ) {
the_post();
?>
<article class="blog__post">
<div class="blog__minicard">
<h2 class="blog__minicard_title">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</h2>
<div class="post-meta">
<time class="post__date" datetime="<?php the_time('F j, Y'); ?>"><?php the_time('F j, Y'); ?></time>
</div>
<div class="blog__minicard_content">
<div class="blog__minicard_images">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('post-thumb'); ?></a>
</div>
<?php the_excerpt(); ?>
</div>
</div>
<div class="blog__tab_line"></div>
</article>
<?php
} ?>
<?php
the_posts_pagination(); ?>
<?php
wp_r
eset_query();