そのスラッグからページリンクを取得することは可能ですか?
6 回答
- 投票
-
- 2010-12-07
あなたはページについて話しているのですか?投稿ではありません.
これはあなたが探しているものですか:
-
get_permalink( get_page_by_path( 'map' ) )
-
get_permalink( get_page_by_title( 'Map' ) )
-
home_url( '/map/' )
You're talking about Pages right? Not Posts.
Is this what you looking for:
get_permalink( get_page_by_path( 'map' ) )
get_permalink( get_page_by_title( 'Map' ) )
home_url( '/map/' )
-
`get_permalink(get_page_by_path( 'contact')-> ID));`のことですか?Did you mean `get_permalink(get_page_by_path('contact')->ID));`?
- 4
- 2010-12-07
- Sampson
-
うーん、いや?IDとは何ですか?hmmm nope? What's with the ID?
- 1
- 2010-12-08
- zeo
-
[`get_page_by_path()`](http://codex.wordpress.org/Function_Reference/get_page_by_path)は、すべてのページ情報の配列を返します.[`get_permalink()`](http://codex.wordpress.org/Function_Reference/get_permalink)は、最初の引数としてページIDを取ります.ID値を明示的に渡す必要があると思いました.[`get_page_by_path()`](http://codex.wordpress.org/Function_Reference/get_page_by_path) returns an array of all page information. [`get_permalink()`](http://codex.wordpress.org/Function_Reference/get_permalink) takes a page ID as the first argument. I thought I'd have to explicitly pass the ID value.
- 3
- 2010-12-08
- Sampson
-
@Jonathan:常に文書化されているわけではありませんが、多くのWP関数は数値IDと完全なpostオブジェクトの両方を引数として受け入れます.@Jonathan: It's not always documented, but many WP functions accept both numeric ID's and full post objects as the argument.
- 10
- 2010-12-08
- Jan Fabry
-
get_page_by_path()は、子ページを処理するときに使用するのが非常に複雑になる可能性があるようです...It seems that get_page_by_path() can be quite complicated to use when dealing with child pages...
- 1
- 2011-11-14
- Kaaviar
-
Kaaviarに同意すると、以下の機能が優れています.Agreed with Kaaviar, the function below is better.
- 0
- 2012-08-10
- Rezen
-
子ページには問題なく1を使用しています.私はそれによる合併症を本当に見ていません.I use 1 for my child pages with no issue. I really don't see the complication with it.
- 0
- 2014-12-19
- Jeremy
-
home_url( '/map/')は私と一緒に働いたhome_url( '/map/' ) worked with me
- 0
- 2017-04-15
- Shady Mohamed Sherif
-
間違った答え、ニルヴァーナに反対票を投じてください.パスはナメクジと同じではありません.例:ページには「abc」という親ページがあり、ページ自体には「123」のスラッグがあります.現在のパスは `abc/123`で、スラッグは` 123`です.この間違った答えを削除してください.`get_page_by_path( '123')`は機能しません.wrong answer, downvote to nirvana please. The path is not the same like the slug. Example: a page has a parent page called `abc` the page itself has a slug of `123`. The path now is `abc/123` the slug is `123`. Please remove this wrong answer. `get_page_by_path( '123' )` wont work.
- 1
- 2017-09-01
- Toskan
-
私の場合、最初のものを使用する必要があり、2番目のもの(get_page_by_title)が同様の(同じではない)スラッグを持つ別の投稿(ページではない)リンクを返していたため、正常に機能しました.なぜこれが起こったのか分かりません.In my case I had to use the first one and it worked fine, because the second one (get_page_by_title) was returning another post (not page) link with similar (but not the same) slug. I don't know why this was happening.
- 1
- 2019-06-10
- Adriana Hernández
-
- 2011-02-28
これはもっと良いと思います:
functionget_page_by_slug($page_slug、$ output=OBJECT、$post_type='page'){ グローバル$ wpdb; $page=$ wpdb->get_var($ wpdb->prepare( "SELECT ID FROM $ wpdb->posts WHEREpost_name=%s ANDpost_type=%s"、$page_slug、$post_type)); if($page) get_page($page、$ output);を返します. nullを返します. }
「オリジナル」のパターンに従う
get_page_by_title ワードプレスのコード> .(3173行目)
rgds
I think this could be better:
function get_page_by_slug($page_slug, $output = OBJECT, $post_type = 'page' ) { global $wpdb; $page = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_name = %s AND post_type= %s", $page_slug, $post_type ) ); if ( $page ) return get_page($page, $output); return null; }
following the pattern of "original"
get_page_by_title
of wordpress. (line 3173)rgds
-
なぜそれが良いのでしょうか?説明できますか?Why would that be better? Can you explain?
- 11
- 2012-04-11
- julien_c
-
最後のコメント-SQLにはもう1つの条件が必要だと思います: `functionget_page_by_slug($page_slug、$ output=OBJECT、$post_type='page'){global $ wpdb;$page=$ wpdb->get_var($ wpdb->prepare( "SELECT ID FROM $ wpdb->posts WHEREpost_name=%s ANDpost_type=%s ANDpost_status='publish'"、$page_slug、$post_type));if($page)returnget_page($page、$ output);nullを返します.} `Last comment - I think that sql needs to have one more condition: `function get_page_by_slug($page_slug, $output = OBJECT, $post_type = 'page' ) { global $wpdb; $page = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_name = %s AND post_type= %s AND post_status = 'publish'", $page_slug, $post_type ) ); if ( $page ) return get_page($page, $output); return null; }`
-
どうして?IDを取得するためだけに完全な投稿オブジェクトを生成するわけではありません.Why? It doesn't generate a complete post object just to get the ID.
- 0
- 2013-01-09
- s_ha_dum
-
@webcitron Wordpressの元のパターンに従って、「title」で投稿され、「slug」に変更されているからだと思います. ([リンク](http://core.trac.wordpress.org/browser/tags/3.1/wp-includes/post.php#L3173)を確認してください)@webcitron I think just because is following original pattern of Wordpress getting post by 'title', just changing for 'slug'. (check the [link](http://core.trac.wordpress.org/browser/tags/3.1/wp-includes/post.php#L3173))
- 0
- 2013-05-13
- Matheus Eduardo
-
これは良い答えです.これにより、不正なプラグインがページをマスクしたり、誤ってフィルタリングしたりする可能性が回避されます.postテーブルからidを返すと、そこから `\ WP_Post`のインスタンスを作成できます.これは、他の値をチェックするすべてのWordPress関数で直接解決されます.`\ WP_Post`は、投稿に関連するほとんどのデータを直接検索するメソッドも提供します.This is a good answer. This bypasses the possiblity of a rogue plugin masking your page or incorrectly filtering it. If you return the id from the post table, then you can create an instance of `\WP_Post` from it, and that resolves directly in all of the wordpress functions that check for other values. `\WP_Post` also provides methods directly to find most related data about the post.
- 0
- 2018-03-23
- mopsyd
-
- 2013-01-31
これは、Tom McFarlinが
彼のブログで公開した方法です: /** * Returns the permalink for a page based on the incoming slug. * * @param string $slug The slug of the page to which we're going to link. * @return string The permalink of the page * @since 1.0 */ function wpse_4999_get_permalink_by_slug( $slug, $post_type = '' ) { // Initialize the permalink value $permalink = null; // Build the arguments for WP_Query $args = array( 'name' => $slug, 'max_num_posts' => 1 ); // If the optional argument is set, add it to the arguments array if( '' != $post_type ) { $args = array_merge( $args, array( 'post_type' => $post_type ) ); } // Run the query (and reset it) $query = new WP_Query( $args ); if( $query->have_posts() ) { $query->the_post(); $permalink = get_permalink( get_the_ID() ); wp_reset_postdata(); } return $permalink; }
カスタム投稿タイプと組み込みの投稿タイプ(
post
やpage
など)で機能します.This is a method published by Tom McFarlin on his blog:
/** * Returns the permalink for a page based on the incoming slug. * * @param string $slug The slug of the page to which we're going to link. * @return string The permalink of the page * @since 1.0 */ function wpse_4999_get_permalink_by_slug( $slug, $post_type = '' ) { // Initialize the permalink value $permalink = null; // Build the arguments for WP_Query $args = array( 'name' => $slug, 'max_num_posts' => 1 ); // If the optional argument is set, add it to the arguments array if( '' != $post_type ) { $args = array_merge( $args, array( 'post_type' => $post_type ) ); } // Run the query (and reset it) $query = new WP_Query( $args ); if( $query->have_posts() ) { $query->the_post(); $permalink = get_permalink( get_the_ID() ); wp_reset_postdata(); } return $permalink; }
It works with custom post types and built-in post types (such as
post
andpage
). -
- 2017-09-01
階層ページはそのように機能しないため、受け入れられた答えは間違っています.簡単に言えば、スラッグは必ずしもページや投稿のパスではありません.例えば.ページに子などがあります.パスは
parent-slug/child-slug
になり、get_page_by_path
はこの方法でchild-slug
を見つけることができません..適切な解決策は次のとおりです.function mycoolprefix_post_by_slug($the_slug, $post_type = "page"){ $args = array( 'name' => $the_slug, 'post_type' => $post_type, 'post_status' => 'publish', 'numberposts' => 1 ); $my_page = get_posts($args)[0]; return $my_page; } <a href="<?php echo mycoolprefix_post_by_slug('map'); ?>">Map</a>
the accepted answer is wrong because hierarchical pages don't work like that. Simply put, the slug is not always the path of the page or post. E.g. your page has a child etc. the path will be
parent-slug/child-slug
andget_page_by_path
will fail to findchild-slug
this way. The proper solution is this:function mycoolprefix_post_by_slug($the_slug, $post_type = "page"){ $args = array( 'name' => $the_slug, 'post_type' => $post_type, 'post_status' => 'publish', 'numberposts' => 1 ); $my_page = get_posts($args)[0]; return $my_page; } <a href="<?php echo mycoolprefix_post_by_slug('map'); ?>">Map</a>
-
- 2018-02-26
これを試す:
<a href="<?php echo get_page_link( get_page_by_path( 'map' ) ); ?>">Map</a>
get_page_by_path( 'path' )
は、ページ/投稿オブジェクトを返します.これは、投稿/ページオブジェクトを受け入れてパーマリンクを返すため、get_page_link()
で使用できます.Try This:
<a href="<?php echo get_page_link( get_page_by_path( 'map' ) ); ?>">Map</a>
get_page_by_path( 'path' )
returns page/post object which can be then used byget_page_link()
as it accepts post/page object and returns permalink.-
** [編集]あなたの答え**と説明を追加してください:**なぜ**それが問題を解決できるのでしょうか?Please **[edit] your answer**, and add an explanation: **why** could that solve the problem?
- 2
- 2018-02-26
- fuxia
-
- 2014-11-11
function theme_get_permalink_by_title( $title ) { // Initialize the permalink value $permalink = null; // Try to get the page by the incoming title $page = get_page_by_title( strtolower( $title ) ); // If the page exists, then let's get its permalink if( null != $page ) { $permalink = get_permalink( $page->ID ); } // end if return $permalink; } // end theme_get_permalink_by_title
この機能を使用する
if( null == theme_get_permalink_by_title( 'Register For This Site' ) ) { // The permalink doesn't exist, so handle this however you best see fit. } else { // The page exists, so do what you need to do. } // end if/else
function theme_get_permalink_by_title( $title ) { // Initialize the permalink value $permalink = null; // Try to get the page by the incoming title $page = get_page_by_title( strtolower( $title ) ); // If the page exists, then let's get its permalink if( null != $page ) { $permalink = get_permalink( $page->ID ); } // end if return $permalink; } // end theme_get_permalink_by_title
Use this function by
if( null == theme_get_permalink_by_title( 'Register For This Site' ) ) { // The permalink doesn't exist, so handle this however you best see fit. } else { // The page exists, so do what you need to do. } // end if/else
スラッグだけからページのパーマリンクを取得することは可能ですか?
get_page_link()
を使用してIDからページのパーマリンクを取得できることを認識しています:ページのスラッグで同じことを行う方法があるかどうか知りたいです-次のように: