Вывод тэга:
<? the_tags() ?>
Добавить в
Functions.php для подключения визуального редактора (следовательно прикрепление картинок) в метках:
remove_filter( 'pre_term_description', 'wp_filter_kses' );
remove_filter( 'term_description', 'wp_kses_data' );
function mayak_category_description($container = ''){
$content = is_object($container) && isset($container->description) ? html_entity_decode($container->description) : '';
$editor_id = 'tag_description';
$settings = 'description';
?>
<tr class="form-field">
<th scope="row" valign="top"><label for="description">Описание</label></th>
<td><? wp_editor($content, $editor_id, array(
'textarea_name' => $settings,
'editor_css' => '<style>.html-active .wp-editor-area{border:0;}</style>',
)); ?><br />
<span class="description">Описание по умолчанию не отображается, однако некоторые темы могут его показывать.</span></td>
</tr>
<?
}
add_filter('edit_category_form_fields', 'mayak_category_description');
add_filter('edit_tag_form_fields', 'mayak_category_description');
function mayak_remove_category_description(){
global $mk_description;
if ( $mk_description->id == 'edit-category' or 'edit-tag' ){
?>
<script type="text/javascript">
jQuery(function($) {
$('textarea#description').closest('tr.form-field').remove();
});
</script>
<?
}
}
add_action('admin_head', 'mayak_remove_category_description');
Вывод описания тэга:
<? $posttags = get_the_tags();
if($posttags) foreach($posttags as $tag) echo $tag->description ?>
Цикл для файла
tag.php:
<? while(have_posts()): the_post();
// содержимое записи
endwhile;
?>