Gerga

Gerga
Рейтинг
94
Регистрация
02.08.2015

Подобные плагины я не встречал, вам сюда /ru/forum/webmasters-jobs/programming .

manaz,


<?php
$count = count($sliderString->image);
for ( $i=0; $i < $count; $i++ ) {
echo $sliderString->image[$i], '<br>', $sliderString->title[$i];
}
ps axf:
echo*"<div>".join("</div><div>",*$a)."</div>";*

Если с join, то так:


echo '<div>', join('</div><div>', $mas), '</div>';

Но с перебором быстрее:


$s = '';
$x = sizeOf($a);
for ( $i = 0; $i < $x; ++$i ) {
$s .= '<div>'. $a[$i] .'</div>';
}
echo $s;

Leonid H, это будет быстрее :)


foreach( $a as $b ) {
echo '<div>', $b ,'</div>';
}



---------- Добавлено 30.08.2016 в 01:41 ----------

или так


foreach ( $a as $b ) {
$o .= '<div>'.$o.'</div>';
}
echo $o;
Samail:
text1 = 'техт 1';
text2 = 'техт 2';
text3 = 'техт 3';
text4 = 'техт 4';
text5 = 'техт 5';
text6 = 'техт 6';
text7 = 'техт 7';
text8 = 'техт 8';
text9 = 'техт 9';
text10 = 'техт 10';

А что с массивами-то случилось?)

SEOKinG,


<?php
if ( in_category( array( 126, 125, 123, 122, 236, 226 ) ) ) :
echo do_shortcode('***91;contact-form-7 id="7594" title="Форма"***93;');
else :
?>
тут ваш адсенс код
<?php endif;?>

Oksenia, как вариант Backend Localization.

tylatong, смотрите в сторону функции the_post_navigation.

tylatong, отредактировать тему для моб. устройств.

Всего: 811