<!-- /*create category shortcode*/ -->
<?php
function ag_short_category(){
global $post;
$tax = get_taxonomy('ag_movie_type');
$name = $tax -> labels -> name;
$args = array(
'type' => 'ag_movie_reviews',
'hide_empty' => 0,
'taxonomy' => 'ag_movie_type',
);
$categories = get_categories( $args );
?>
<h3 class="p2"><?php echo $name;?></h3>
<ul class="list-1">
<?php foreach ( $categories as $term ): ?>
<li><a href="" id="<?php echo $term->term_id; ?>"><?php echo $term -> name;?></a></li>
<?php endforeach;?>
</ul>
<?php
}
add_shortcode('ag_category', 'ag_short_category');
?>
这是我创建短代码的代码。 代码是有效的。 但是当我激活代码时,我无法上传图片或视频网址。 问题是什么?? 感谢。