WordPress插件中的自定义页面模板
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress插件中的自定义页面模板相关的知识,希望对你有一定的参考价值。
This allows you to create a custom page template in your plugin. Say your plugin creates a custom post type and you want to override the standard archives page template to display your custom post type in a special way. You could achieve this by creating a custom template for your post type and using this code to display that template when appropriate.
add_filter( 'page_template', 'wpa3396_page_template' ); function wpa3396_page_template( $page_template ) { if ( is_page( 'my-custom-page-slug' ) ) { } return $page_template; }
以上是关于WordPress插件中的自定义页面模板的主要内容,如果未能解决你的问题,请参考以下文章