如何以简码获取帖子网址

时间:2018-08-08 07:40:15

标签: php wordpress

我已经在该函数中创建了简码,以便在编辑器中使用简码在页面/帖子上显示促销。

    //Testimonial shortcode
    add_shortcode('promotions', 'adenPromotions');   
    function adenPromotions($attr, $content)
   {        
   ob_start();  
    get_template_part('./templates/promotions-loop');  
    $ret = ob_get_contents();  
    ob_end_clean();  
    return $ret;    
   }

这是我拥有的模板文件中的代码。

<?php
if ($_SESSION['selectLocation'] != '') {
$args = array( 'post_type' => 'promotion', 
          'meta_key' => 'builder',
          'posts_per_page' => 3,
          'meta_value' => $_SESSION['selectLocation']);
} else {
$args = array( 'post_type' => 'promotion',
          'posts_per_page' => 3,
          'meta_value' => 0); 
};
if ($_SESSION['selectLocation'] != ''):
?>
<div class="container-fluid px-0">
<div class="row">
    <div class="col-md-12">
        <div class="offer-section-page-ah">
            <?php
                $the_query = new WP_Query( $args );?>              
                <?php if ( $the_query->have_posts() ) : $i = 0; ?>
                    <?php while ( $the_query->have_posts() ) : 
$the_query->the_post(); $i++ ?>
                        <div class="offer-loop-page  block-<?php echo $i 
?>">
                            <div class="offer-banner-ah" 
style="background-image:url('<?php echo the_post_thumbnail_url('full') ;?>');"></div>
                            <div class="offer-right">
                                <a href="<?php echo get_permalink() ;?>"><h2 class="heading"><?php the_title() ;?></h2></a>
                                <div class="post-expirator-ah"><p><?php echo do_shortcode('[postexpirator]') ;?></p></div>
                                <div class="sub-heading"><p><?php the_excerpt() ;?></p></div>
                                <div class="more-btn-ah"><a href="<?php echo get_permalink() ;?>" class="pink">Find out more</a></div>
                            </div>
                        </div>
                    <?php endwhile; ?>
                    <?php wp_reset_postdata(); ?>        
                <?php else : ?>
                    <h2 class="heading text-center mb-0 m-0 py-4"> Sorry, no promotion available in your region.</h2>
            <?php endif; ?>
        </div>
    </div>
</div>

get_permalink()应该在循环中返回帖子的url,但是如果可行,它将返回添加了简码的帖子的URL。

希望代码有意义。如果这里的代码没有意义,这是pastebin版本。 -> https://pastebin.com/MSNn6rKQ

编辑:显然,the_excerpt()函数正在播放,不确定原因,将其删除并解决了问题。创建了ACF字段进行描述。

3 个答案:

答案 0 :(得分:0)

请尝试以下方法:

get_permalink(get_the_ID())代替get_the_permalink

答案 1 :(得分:0)

在Post循环中,您可以使用get_the_ID()函数。

使用此功能,您可以在循环中获取带有Post的ID。

并使用此ID获取循环中帖子的固定链接

$post_id = get_the_ID();
get_the_permalink($post_id);

答案 2 :(得分:0)

要获取有关使用您的短代码的当前帖子的信息,请使用:

global $post;

您可以

get_the_permalink($post->ID)