Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the download-manager domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/xs518266/wp-customize.jp/public_html/wp-includes/functions.php on line 6114
WordPressでプラグインなしでPHP使用可能なウィジェットが利用可能になるサンプルコード – WPカスタマイズ

WordPressでプラグインなしでPHP使用可能なウィジェットが利用可能になるサンプルコード

プラグインなしでWordPressのPHP使用可能なウィジェット追加

こんにちは、この記事ではWordPressのプラグインを使用せずにPHPが使用可能なウィジェットを追加するための方法をご紹介します。

WordPressのウィジェット機能は、サイトのサイドバーやフッターに簡単に要素を追加するための便利なツールですが、基本的にプラグインを使用しなければウィジェットをカスタマイズすることはできません。

この記事では、PHPが使用可能なカスタムウィジェットを作成する方法を説明します。これにより、汎用性・拡張性・利便性を兼ね備えた万能なウィジェットをサイトのどこにでも配置することができるようになります。

プラグインを使用せずに、PHPの知識だけでウィジェットを作成する方法を学びたい方は、ぜひこの記事を読んでみてください。

WordPressプラグインなしでPHP使用可能なウィジェット追加

ウィジェット実装イメージ

ブロックエディタ

サンプルコードの動作環境

動作検証をおこなったテスト環境は以下の通りです。ブロックウィジェット・クラシックウィジェットの双方で動作確認をしています。

項目バージョン
WordPress5.0.0
PHP5.6.0
MySQL5.6.0

サンプルコード

functions.phpに以下のサンプルコードを挿入しご使用ください。

<?php
/**
* PHP_Code_Widget
* @access
* @param
* @return
* @author
* @see
*/

class PHP_Code_Widget extends WP_Widget {
	function __construct() {
		load_plugin_textdomain( 'php-code-widget', false, dirname( plugin_basename( __FILE__ ) ) );
		$widget_ops = array('classname' => 'widget_execphp', 'description' => __('Arbitrary text, HTML, or PHP Code', 'php-code-widget'));
		$control_ops = array('width' => 400, 'height' => 350);
		parent::__construct('execphp', __('PHP Code', 'php-code-widget'), $widget_ops, $control_ops);
	}

	function widget( $args, $instance ) {
		extract($args);
		$title = apply_filters( 'widget_title', empty($instance['title']) ? '' : $instance['title'], $instance );
		$text = apply_filters( 'widget_execphp', $instance['text'], $instance );
		echo $before_widget;
		if ( !empty( $title ) ) { echo $before_title . $title . $after_title; }
			ob_start();
			eval('?>'.$text);
			$text = ob_get_contents();
			ob_end_clean();
			?>
			<div class="execphpwidget"><?php echo $instance['filter'] ? wpautop($text) : $text; ?></div>
		<?php
		echo $after_widget;
	}

	function update( $new_instance, $old_instance ) {
		$instance = $old_instance;
		$instance['title'] = strip_tags($new_instance['title']);
		if ( current_user_can('unfiltered_html') )
			$instance['text'] =  $new_instance['text'];
		else
			$instance['text'] = stripslashes( wp_filter_post_kses( $new_instance['text'] ) );
		$instance['filter'] = isset($new_instance['filter']);
		return $instance;
	}

	function form( $instance ) {
		$instance = wp_parse_args( (array) $instance, array( 'title' => '', 'text' => '' ) );
		$title = strip_tags($instance['title']);
		$text = format_to_edit($instance['text']);
?>
		<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'php-code-widget'); ?></label>
		<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p>

		<textarea class="widefat" rows="16" cols="20" id="<?php echo $this->get_field_id('text'); ?>" name="<?php echo $this->get_field_name('text'); ?>"><?php echo $text; ?></textarea>

		<p><input id="<?php echo $this->get_field_id('filter'); ?>" name="<?php echo $this->get_field_name('filter'); ?>" type="checkbox" <?php checked(isset($instance['filter']) ? $instance['filter'] : 0); ?> /> <label for="<?php echo $this->get_field_id('filter'); ?>"><?php _e('Automatically add paragraphs.', 'php-code-widget'); ?></label></p>
<?php
	}
}

add_action('widgets_init', 'php_code_widget_register');
function php_code_widget_register() {
	register_widget('PHP_Code_Widget');
}

?>

まとめ

ウィジェットで自由にPHPが記述できる環境にしておけば、サイト開発の幅がグンと広がります。例えば、カテゴリごとに人気記事を変えたり、記事ごとにバナーを変更したり、細かい導線設定が可能になります。

是非ともサイト開発にお役立てくださいませ。

投稿者プロフィール

Yuji Itou
Yuji Itou
WordPress歴10年以上のwebエンジニア。おもな使用言語はHTML/JavaScript/PHP。実績として、ブログ型ホームページ、データベース型サイトや企業コーポレートサイトなど小~中規模のあらゆるサイト開発を経験し、サイトデザインの組み込み(フロントエンド)からサーバー構築、データベース設計(バックエンド)まで一貫して携わっている。また、Google検索アルゴリズムにも詳しく、SEO対策を考慮したサイトコーディングや、SEOツールの作成も得意。ときたまコンテンツSEOのライティングもおこなっている。

コメントを残す

メールアドレスは公開されることはありません。コメントの公開は承認制となります。また、多忙によりコメントには返信できない場合がありますが、不具合・バグ報告はTwitterのメッセージでも承っております。こちらまで。