Get Current Page URL in WordPress

Hello developers, sometimes we need small changes like today and wondering how to do these here is how to get current page URL to generate automatic link using PHP code.このページでは、WordPressで現在のページのURLを取得する方法について説明します。 ここで私はあなたのためのソリューションを持っているそれは、任意のプラグインは、私はまた、あなたがWordPressで使用されていない場合でも、現在のページのURLを取得するあなたと共有するつもりですコードのあまりを変更する必要はありませんです。

以下のコードは、このクエリを使用してホームリンクと一緒にページへのフルURLリンクを取得するためにWordPressを要求し、あなたの結果を得るためにこれらのリンクと出力をサニタイズすることを忘れないでください。

Get Current page link URL using the_permalink

<?php esc_url(the_permalink()); ?>

それがWordPressであるかどうかどのプラットフォームベースのWebサイトで現在のページリンクを取得する別のメソッドです。 これらはまた、HTTP/HTTPS リンクのために動作します。

Aso Read:

  • Add Ad Code After Every Few Post
  • Add Icons to WordPress Customizer Setting Panel
<?php $Path=$_SERVER;echo $URI='http://www.example.com'.$Path;?>

Adding one more code into this list

<?php echo $current_url="//".$_SERVER.$_SERVER; ?>

In above examples server return results are unfiltered it should be escape using WordPress appropriate code like esc_url() or esc_url_raw() :

Read How to Secure Website? .htaccess

WordPress へのリクエストクエリを使用して、現在のページの URL を生成するように変更しました。