custom_page.php
wordpress で名前を付けたカスタム ページを作成し、これをページテンプレートとして使用します。
私は自分の関数を作成し、自分のcustom_page.php
. この機能はプラグインとしてインストールされます。
どのような WP HOOKS を使用すればよいですか。たとえば、以下のコードがあります。
function your_function() {
if ( is_page_template('custom_page.php') ) {
echo '<p>This is inserted at the bottom</p>';
{
}
add_action('wp_footer', 'your_function');
このコードをcustom_page.phpフッター領域でのみ実行したいです。
[編集]