zoukankan      html  css  js  c++  java
  • wordpress获取当前页面链接

      我们知道wordpress的<?php the_permalink(); ?>和<?php echo get_permalink(); ?>可以获取页面链接,但是有些比较复杂的环境可能输出的链接是错误的,那要如何获取当前页面链接呢?可以试一下用下面的方法

    <?php
    global $wp; 
    $current_url = home_url(add_query_arg(array(),$wp->request)); 
    echo $current_url; 
    ?>
    

      还有更复杂的方法

    function get_current_archive_link( $paged = true ) { 
            $link = false; 
     
            if ( is_front_page() ) { 
                    $link = home_url( '/' ); 
            } else if ( is_home() && "page" == get_option('show_on_front') ) { 
                    $link = get_permalink( get_option( 'page_for_posts' ) ); 
            } else if ( is_tax() || is_tag() || is_category() ) { 
                    $term = get_queried_object(); 
                    $link = get_term_link( $term, $term->taxonomy ); 
            } else if ( is_post_type_archive() ) { 
                    $link = get_post_type_archive_link( get_post_type() ); 
            } else if ( is_author() ) { 
                    $link = get_author_posts_url( get_query_var('author'), get_query_var('author_name') ); 
            } else if ( is_archive() ) { 
                    if ( is_date() ) { 
                            if ( is_day() ) { 
                                    $link = get_day_link( get_query_var('year'), get_query_var('monthnum'), get_query_var('day') ); 
                            } else if ( is_month() ) { 
                                    $link = get_month_link( get_query_var('year'), get_query_var('monthnum') ); 
                            } else if ( is_year() ) { 
                                    $link = get_year_link( get_query_var('year') ); 
                            }                                                
                    } 
            } 
     
            if ( $paged && $link && get_query_var('paged') > 1 ) { 
                    global $wp_rewrite; 
                    if ( !$wp_rewrite->using_permalinks() ) { 
                            $link = add_query_arg( 'paged', get_query_var('paged'), $link ); 
                    } else { 
                            $link = user_trailingslashit( trailingslashit( $link ) . trailingslashit( $wp_rewrite->pagination_base ) . get_query_var('paged'), 'archive' ); 
                    } 
            } 
            return $link; 
    }
    

      

  • 相关阅读:
    Dapper and Repository Pattern in MVC
    在linux中使用多个redis端口来构建redis集群
    搭建Sql Server AlwaysOn 视频教程
    支付宝支付插件使用文档
    NopCommerce添加事务机制
    NopCommerce(3.9)作业调度插件
    微信扫码支付插件使用文档
    生成HTML表格的后台模板代码
    json字符串和字典类型的相互转换
    NopCommerce适应多数据库方案
  • 原文地址:https://www.cnblogs.com/ytkah/p/11677713.html
Copyright © 2011-2022 走看看