wordpress 讓頁面運行 php的作法
點擊數: 2602
文章目錄
即使有可視化編輯外掛,也不OK。
一定會想以自創php的頁面。結合頁面來編輯。
可是在WORDPRESS的原生設定中,頁面是無法執行PHP代碼
又不像小工具可以添加代碼處理。
這邊有一個很棒的方法
打開你主題的functions.php
貼入以下代碼
- /*
- 頁面運行php的方法
- */
- function php_include( $attr ) {
- $file = $attr['file'];
- $upload_dir = wp_upload_dir();
- $folder = $upload_dir['basedir'] . '/php-content'. "/$file.php";
- ob_start();
- include ( $folder );
- return ob_get_clean();
- }
- add_shortcode( 'phpcode', 'php_include' );
第二步、在
- wp-content/uploads/
建立一個資料夾
- php-content
第三步、在資料夾裡面建立xxxxx.php 把你要運行的php代碼貼入 譬如,我要運行「頁面顯示分類文章列表」 php代碼是
- query_posts('showposts=10&cat=4'); //cat=1为调用ID为1的分类下文章
- while(have_posts()) : the_post(); ?>
- ""title="">
是文章id
- cat=4
是文章id
- showposts=10
代表文章數量10
EX:我是建立post4.php 於是你的簡碼是
- [phpcode file="post4"]