0

論文のテーマフォルダーにfooter.phpファイルを作成していますが、テーマがそのコンテンツをプルしていないため、フッター領域のfooter.phpファイルのコンテンツにアクセスする方法を説明します。

<div id="footer">
<div class="container clearfix">
    <div class="footer-widget widget_text" id="text-10">
    <h4 class="widgettitle" style="text-indent: 0px;">
 <cufontext>About </cufontext><cufontext>Liveagl.com</cufontext></h4>                             
4

1 に答える 1

1

カスタムフッターをテーゼフッターでオーバーライドする必要があります。

ファイルに以下のコードを追加することでそれを行うことができfunction.phpます。

remove_action('thesis_hook_footer', 'thesis_attribution');
function my_custom_footer() {
  //Your custome footer code goes here
}
add_action('thesis_hook_footer', 'my_custom_footer');

参照:http ://thesistutor.com/how-to-change-the-footer-content/

于 2013-01-22T11:58:14.867 に答える