<?php
$args = array(
'taxonomy' => array('post_tag','category'),
'hide_empty' => false, // не скрывать пустые
'number' => 0, // показывать все (по-умолчанию 45)
);
wp_tag_cloud($args);
?>
You can configure application languages in the application configuration like the following:
return [
// set target language to be Russian
'language' => 'ru-RU',
// set source language to be English
'sourceLanguage' => 'en-US',
......
];
The default value for the source language is en-US, meaning US English.
<div class="panel" id="panel-1"></div>
<div class="panel" id="panel-2"></div>
$('#btn-panel-1').click(function(){
$('.panel:visible').hide();
$('#panel-1').show();
});
$('#btn-panel-2').click(function(){
$('.panel:visible').hide();
$('#panel-2').show();
});
<?php
ob_start();?>
<a href="<?php the_permalink(); ?>" class="thumb-preview" rel="<?php zt_get_thumbnail2(); ?>"><img src="<?php zt_get_thumbnail(); ?>" alt="<?php the_title(); ?>" class="img250" /></a>
<?php
$code = ob_get_clean();
$args = array(
'limit' => 5,
'post_html' => '<li>{thumb} '.$code.'</li>'
);
wpp_get_mostpopular( $args );
?>
UPDATE table SET city=REPLACE('city', 'г.' , '');
UPDATE table SET city=REPLACE('city', ' г', '');