Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<?php if(is_page('id')) {
wp_tag_cloud('smallest=8&largest=22&number=&orderb y=count');
} ?>
wp_tag_cloud('smallest=8&largest=14&orderby=count');
При вставке такой вот штуки
<?php wp_tag_cloud('smallest=8&largest=22&number=&orderb y=count'); ?>
function wp_widget_tag_cloud($args) {
extract($args);
$options = get_option('widget_tag_cloud');
$title = empty($options['title']) ? __('Tags') : apply_filters('widget_title', $options['title']);
echo $before_widget;
echo $before_title . $title . $after_title;
wp_tag_cloud('smallest=8&largest=14&orderby=name');
echo $after_widget;
}