search
尋找貓咪~QQ 地點 桃園市桃園區 Taoyuan , Taoyuan

Add Custom Template For Specific PostIn WordPress – ARON HACK 亞倫害的

There are two things you need to do. First, copy and paste the code in your function.php file. Second, find the single.php in your theme folder. This file is the template of posts. Duplicate it, and rename as single-{Post ID}.php.

add_filter( 'single_template',  'check_post_custom_template');
 function check_post_custom_template($template){
     global $post;
     $custom_template = locate_template( "single-{$post->ID}.php" );
     if ( ! empty( $custom_template ) ) {
         $template = $custom_template;
     }
     return $template;
 }

And how to get your Post ID? You can enter the post edit page, then get it in the link. For example, the edit page link of the post is below, and “post = 123456” is your post ID.

https://aronhack.com/wp-admin/post.php?post=123456&action=edit

Related Posts

The Complete WordPress Customization Tutorial – Just Copy And Paste And Work

Content Protection by DMCA.com


熱門推薦

本文由 aronhackcom 提供 原文連結

寵物協尋 相信 終究能找到回家的路
寫了7763篇文章,獲得2次喜歡
留言回覆
回覆
精彩推薦