【问题标题】:Shortcode Not working in wordpress main content fild简码在 wordpress 主要内容字段中不起作用
【发布时间】:2017-12-01 20:10:45
【问题描述】:

我使用简码,通过这个简码,我想要主标题、缩略图、一些内容,然后是我帖子的永久链接。 但是使用这个短代码 Wordpress 显示完整的内容没有标题、缩略图和永久链接。 我现在该怎么办。 The photo of my style (注意:这是 Shortcode 的旧格式) 请帮我。

这是Into Functions.php的代码

function category_post_shortcode($atts){
    extract(shortcode_atts(array(
    'title' => '',
    'link' => '',
    'category' => '',
    ), $atts, 'category_post'));

    $q = new WP_Query(
    array( 'category' => $category, 'post_per_page' => '3', 'post_type' => 'post')
    );
    $list = '<div class="your_class"><h2>'.$title.'</h2> <a href="'.$link.'">more</a>';

    while($q->have_posts()) : $q->the_post();
    $id = get_the_ID();

    $post_excerpt = get_post_meta($id, 'post_excerpt', true);
    $post_thumbnail=get_the_post_thumbnail( $post->ID,'post-thumbnail' );
    $list .= '


                  <div class="single-cat-post">
                      '.$post_thumbnail.'
                      <h3>'.get_the_title().'</h3>
                      <P>'.$post_excerpt.'</p>
                      <a href="'.get_permalink().'">read more</a>
                 </div>



        ';
endwhile;
$list.= '</div>';
wp_reset_query();
}
add_shortcode('category_post', 'category_post_shortcode');      

这是在我的 Index.php 中

 <?php if(have_posts()) : ?><?php while(have_posts()) : the_post (); ?>
        <?php the_content(); ?>
        <?php endwhile; ?>

         <?php else : ?>
         <h3><?php _e('404 Error: Not Found'); ?></h3>
         <?php endif; ?>

这是缩略图支持

add_theme_support( 'post-thumbnails' );
add_image_size( 'post-image', 145,100, true);

我的简码

[category_post title="This is a testing post" category="New" link="#"]

【问题讨论】:

    标签: php wordpress shortcode diamond-problem


    【解决方案1】:

    请检查此代码 我对代码做了一些更改。

    function category_post_shortcode($atts){
    extract(shortcode_atts(array(
        'title' => 'true',
        'link' => 'true',
        'category' => '',
        ), $atts));
    $q = new WP_Query(
    array( 'category_name' => $category, 'posts_per_page' => '3','ignore_sticky_posts' => 1));
    $list ='';
    $list.= '<div class="your_class">';
    while($q->have_posts()) : $q->the_post();
        $list .= '<div class="single-cat-post">';
    
        /*--------------Thumbnail ----------*/
        $list .= '<div class="thumbnail-cat-post">';
        $list.=  get_the_post_thumbnail() ;
        $list .= '</div>';
        /*--------------Thumbnail end ----------*/
    
        /*------------Title start ------------*/
        if ( $title == 'true' )
        {
            $list .= '<div class="title-cat-post">';
            $list.= the_title('<h3 class="ss">','</h3>', false);
            $list .= '</div>';
        }
        /*------------title End ------------*/
    
        /*--------------excerpt start ----------*/
        $list .= '<div class="excerpt-cat-post">';
        $list.= '<p>'.get_the_excerpt ().'</p>';
        $list .= '</div>';
        /*-----------excerpt end-------------*/
    
        /*--------------Permalink start----------*/
        if ( $link == 'true' )
        {
            $list .= ' <a href="'.get_permalink().'">read more</a>';
        }
        /*----------------Permalink end --------*/
    
        $list.= '</div>';/*----------Single-cat-post end--------------*/
    endwhile;
    $list.= '</div>'; /*-------------your_class end-----------*/
    wp_reset_query();
    return $list;
    }
    add_shortcode('category_post', 'category_post_shortcode'); 
    

    短代码:[category_post title="true" category="markup" link="true"]

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2019-10-30
      • 2014-01-11
      • 2014-01-02
      • 2013-03-01
      • 2023-01-22
      • 2015-02-01
      • 1970-01-01
      • 2014-08-10
      相关资源
      最近更新 更多