워드프레스/위젯
-
위젯 클래스 예제 1워드프레스/위젯 2024. 6. 13. 21:40
namespace wamp\widget; if ( ! defined( 'ABSPATH' ) ) { exit( 'Go away!' ); } class Wamp_Widget extends \WP_Widget { function __construct() { $widget_options = array( 'classname' => 'WAMP-Widget', 'description' => 'Just adds a simple widget box.' ); parent::__construct( 'standard_Widget', 'My WAMP Widget', $widget_options ); add_acti..