wordpressテーマ Luxeritasの関連記事ウィジェット作成

funcitons.phpに次の記述をします。

add_filter('widget_text', 'do_shortcode');

子テーマにファイルフォルダを作る

ここではmyphpfilesという名前にする

functions.phpに次のコードを記述します。

function Include_my_php($params = array()) {
 extract(shortcode_atts(array(
 'file' => 'default'
 ), $params));
 ob_start();
 include(STYLESHEETPATH . "/myphpfiles/$file.php"); 
 return ob_get_clean();
} 
add_shortcode('myphp', 'Include_my_php'); 

Luxeritasの親テーマからrelated.phpを探し、子テーマのmyphpfilesフォルダにコピー

テキストウィジェットを作って以下のように記載

[myphp file=’related’]