プラグイン’WP TO TOP’を有効化するとエラーが出る
2011年09月02日 16時50分
アクティブ化するとエラーが出た。
Use of undefined constant headerWpToTop – assumed ‘headerWpToTop’
ので以下のように修正。
1 2 3 4 5 6 |
// what to add in the header, calls the headerWpToTop function //add_action('wp_head', headerWpToTop, 1); add_action('wp_head', 'headerWpToTop', 1); // what to add in the footer, calls the footerWpToTop function //add_action('wp_footer', footerWpToTop, 1); add_action('wp_footer', 'footerWpToTop', 1); |