Wordpress短代码

时间:2015-12-18 09:23:48

标签: wordpress wordpress-plugin

<!-- /*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');  
?>

这是我创建短代码的代码。 代码是有效的。 enter image description here 但是当我激活代码时,我无法上传图片或视频网址。 enter image description here 问题是什么?? 感谢。

0 个答案:

没有答案