<!--Кнопки -->
<?if($arElement["CAN_BUY"]):?>
<button><a href="<?echo $arElement["BUY_URL"]?>" rel="nofollow">BUY</a></button>
<button><a href="<?echo $arElement["ADD_URL"]?>" rel="nofollow">ADD TO BUSKET</a></button>
<?endif?>
<!--Кнопки конец -->
движок, запускай функцию nextSlide каждые 3.5 секунды
движок, отмени тот приказ, который был в третьей строке
<?php
$args = array(
'post_type' => 'post',
'posts_per_page' => 5,
'orderby' => 'modified',
);
$custom_query = new WP_Query( $args );
while ( $custom_query->have_posts() ) {
$custom_query->the_post();
echo '<a href="'. get_permalink() .'">' . get_the_title() .'</a>';
}
wp_reset_postdata();
?>
var knopka = document.getElementById ('push');
knopka.addEventListener('click',func1);
function func1() {
var shadow = document.getElementById ('ts1');
if (shadow.style.display !== 'none'){
shadow.style.display="none";
}else{
shadow.style.display="block";
}
};
<input id="push" type="button" value="..." onclick="document.getElementById('ts1').classList.toggle('hidden');"/>
А решается оно часто двумя строчками :)
Может быть есть какие-то книги, которые помогают "строить мост" между голой теорией про массивы (в которой, к слову, сложности не вижу) и возможностью применить знания на практике?
$c=privet1,
$c='privet1';
Но почему-то вся эта абракадабра не работает.
<?$c='privet'?>
<style>
.privet{display:none;}
</style>
<div class="<? echo $c ?>">Привет</div>