Bài viết này thực hiện (hoặc lụm bài về đăng câu like từ các trang khác) bởi Việt Lâm Coder một YOUTUBER có tâm và đẹp trai siêu cấp vô địch zũ trụ. Các bạn đi ngang nếu được cho Lâm 1 like và 1 đăng ký kênh Youtube nhé !!
We used to write custom functions to return these values until we discovered you can pass get_permalink a function that will return the ID.
Examples..
Get Permalink By Page Name
1 |
<span class="sy0" style="font-size: 14.4px;"><</span><span class="" style="font-size: 14.4px;">a href</span><span class="sy0" style="font-size: 14.4px;">=</span><span class="st0" style="font-size: 14.4px;">"<?php echo get_permalink( get_page_by_path( 'Events' ) ) ?>"</span><span class="sy0" style="font-size: 14.4px;">></span><span class="" style="font-size: 14.4px;">Events</span><span class="sy0" style="font-size: 14.4px;"><</span><span class="" style="font-size: 14.4px;">/a</span><span class="sy0" style="font-size: 14.4px;">></span> |
Get Permalink By Page Slug
1 |
<span class="sy0" style="font-size: 14.4px;"><</span><span class="" style="font-size: 14.4px;">a href</span><span class="sy0" style="font-size: 14.4px;">=</span><span class="st0" style="font-size: 14.4px;">"<?php echo get_permalink( get_page_by_path( 'events' ) ) ?>"</span><span class="sy0" style="font-size: 14.4px;">></span><span class="" style="font-size: 14.4px;">Events</span><span class="sy0" style="font-size: 14.4px;"><</span><span class="" style="font-size: 14.4px;">/a</span><span class="sy0" style="font-size: 14.4px;">></span> |
Note On Hierarchical Pages and The Slug
If you have a page hierarchy you will have to pass the full slug including the parent to the get_page_by_path function.
Example… To get the permalink using method with child page, you need to pass the full slug. In this case we have a child page called “Parties” with a parent page called “Events”.
1 |
<span class="sy0" style="font-size: 14.4px;"><</span><span class="" style="font-size: 14.4px;">a href</span><span class="sy0" style="font-size: 14.4px;">=</span><span class="st0" style="font-size: 14.4px;">"<?php echo get_permalink( get_page_by_path( 'events/parties' ) ) ?>"</span><span class="sy0" style="font-size: 14.4px;">></span><span class="" style="font-size: 14.4px;">Parties</span><span class="sy0" style="font-size: 14.4px;"><</span><span class="" style="font-size: 14.4px;">/a</span><span class="sy0" style="font-size: 14.4px;">></span> |
Bài viết này thực hiện (hoặc lụm bài về đăng câu like từ các trang khác) bởi Việt Lâm Coder một YOUTUBER có tâm và đẹp trai siêu cấp vô địch zũ trụ. Các bạn đi ngang nếu được cho Lâm 1 like và 1 đăng ký kênh Youtube nhé !!