Here is a stand-alone answer. Building a widget to echo hard-coded PHP is trivial.
class PHP_Widget_wpse_80256 extends WP_Widget {
function __construct() {
$opts = array(
'description' => 'Display Some Hard Coded PHP content'
);
parent::WP_Widget(
'my-hc-php-content',
'Some PHP',
$opts
);
}
function widget($args,$instance) {
// PHP goes here, like this:
echo 'PHP generated content';
}
}
function register_my_widgets() {
register_widget('PHP_Widget_wpse_80256');
}
add_action('widgets_init','register_my_widgets');
There is no need for the overhead of a plugin or the overhead of evaling your widget text, which is what the plugin mentioned does.
Related Posts:
- How to include checkbox in widget backend form?
- Limit the number of inactive widgets
- Create Image Uploader for Widget
- How to get the registered sidebar’s name by its id?
- Displaying a variable stored in functions.php inside widget
- Check if widget has content
- WordPress widget in custom theme
- Infinite-Scroll Plugin and Jetpack Infinite Scroll Plugin – Adding to “Thoughts” Theme
- display most popular tags in two columns
- List authors with posts in a category
- How to add Shortcode (font awesome) in widget title?
- Anything I can add to functions.php to make text widgets accept PHP?
- WordPress menu deletes when trying to add a hook
- dynamic sidebar not showing anything
- How can I add a specific, custom widget to my theme’s header.php?
- Get widget settings function?
- Widgets not showing in my custom theme
- nowplaying.include.php Will Not Display Results
- javaScript in section of WP API
- Style every second widget?
- How to group 2 radio buttons in a widget?
- Add before_content and after_content to register_sidebar
- PHP Deprecated: WP_RSSjb has a deprecated constructor
- I can’t get my custom widget area to show on my WordPress site
- How to run PHP code in Text Widget with no plugin in WP 4.4
- custom widget on the footer
- Missing sidebar parameter “fix” – before_content
- How to add just one specific page to widget without plugin?
- How to output widget
- Dynamic Sidebars & Echo
- WordPress Shortcodes.. printf is outputting a random number… Can’t figure out WHY?
- Hide subcategories (widget)
- Why my image upload button is not working in wordpress widget area?
- Adding a widget function into the php theme file
- How to edit widget code to add unique class name to each div?
- If has $title in widgets
- Archives shortcode displaying above widget title
- Widgets in the loop if active
- How to determine if the sidebar is empty? Or not active?
- How to make widget title accept php?
- Widget back end radio button issue
- Hook called before text widget save
- Widgets not showing on custom theme
- My website is not showing Footer section
- WordPress widget and customize.php not working in Ubuntu16.04 VPS
- How can I display Custom Post type Custom Columns and its Content in a Dashboard Widget?
- How to get post category list as select in front-end?
- Simple php in wordpress widget [closed]
- How to use title attributes in sidebar widget?
- Show different website layout if no sidebar added
- random reason on refresh
- Add a select-option to the default widgets
- Don’t display a sidebar widget when on a specific page
- Some problems in custom widget
- How do you create a custom category widget that you can style?
- How a HTML form can trigger a PHP function?
- Retrieve the whole widget sidebar and pass it inside an html
- How to use wp_get_attachment_image or wp_get_attachment_image_src instead of $instance[‘single_feature_image_uri’]
- How to stop hiding buttons forward / backward in pagination?
- Current WordPress Page Title as Search Parameter into A Tag
- How to create a widget with a populated dropdown?
- dashboard widget form not submit mails
- Add widget area from visual editor
- How to make a “page-option” in WordPress
- Priority call methods – PHPMailer->addAddress(NULL)
- I need to edit a widget, with no dashboard access
- is_user_logged_in() not working in homepage
- Dynamic_sidebar load in string makeup
- Customizing the output of the archive and category widget without altering the original behavior of the widget
- Featured Products not showing up in “Featured” area of homepage
- (Who to follow) Twitter widget
- Widget Logic – display on page and all child
- Add disclaimer before certain posts and pages
- Widget Update problems using a for loop
- How can the searchform.php know if it’s used on a registered sidebar id ‘sidebar-1’ or ‘sidebar-2’?
- How to list categories by page id in wordpress
- PHP: Why does my code work in index.php but not a widget?
- Non-static method error when trying to use class in widgets
- Are WordPress widgets cached?
- Widget edit and add in any page
- Slider from different widgets
- Even with PHP plugin get_posts not working in widget area
- Update title of every instance of widget using text field
- how to run a php code in widget?
- Are widget arguments always set inside My_Widget::widget()?
- WP_Widget dynamic field array with external AJAX
- List sibling pages widget, exclude current page
- Name Input from widget displays Sidebar name instead of saved data
- WordPress – show number of comments for each post in widget
- Using existing widget code! [closed]
- Widget header unique classes
- Banner editable from backend
- key( $GLOBALS[‘wp_registered_sidebars’] ) is always showing the same value
- Using a loop to build and update widgets
- PHP Widget and do_shortcode
- Edit the Publish Widget Options
- How to define template directory in this widget code
- WP Debug enabled Undefined index error in a widget
- WordPress PHP8.2 Critical Error in class-wp-widget.php
- wordpress-plugin (widget) that performs a Neaby-search on the openstreetmap-endpoint: around x find y