Which PlugIns have a [subpages] shortcode? [closed]

I found “Subpage Lister” and it solved the problem. If there are others that use the exact same [subpages] code, then I would like to know. https://wordpress.com/plugins/subpage-view Now, I need to find one that supports the [previous_page] [next_page] shortcodes. It’s possible I wrote custom shortcodes and lost the code or forgot how to do them. … Read more

How to get next day date of a specific day

Use the parameters of the shortcode with lowercase: [recurring_event short=”Wed” full=”wednesday”] Try to follow the next code: // NAV: Custom Code function wpcoder_recurring_event_att( $atts ){ $date=””; $default = array( ‘short’ => ‘Sun’, ‘full’ => ‘sunday’ ); $eventday = shortcode_atts($default, $atts); date_default_timezone_set(‘US/Eastern’); if(date(‘D’) == $eventday[“short”]) { echo date(‘F d, Y’); } else { // Create a … Read more

How to temporarily set the featured image for a post when the post is loaded

The post_thumbnail_html action hook will be the one you’re looking for. This allows you to add conditional logic to change the source url depending on the page you’re looking at. function new_post_thumbnail_html( $html, $post_id, $post_thumbnail_id, $size, $attr ) { $new_html = $html; if ( is_archive() ) : $new_html=”<img src=”https://your-image-source.com” alt=”Your image alt tag”>”; endif; return … Read more

Cron Job not working

The default supported recurrences are ‘hourly’, ‘twicedaily’, ‘daily’, and ‘weekly’. From the WordPress definition https://developer.wordpress.org/reference/functions/wp_get_schedules/ If you’re using wp_schedule_event(time(), ‘every_minute’, ‘recurring_event’);, you may need to change the recurrence parameter to one of the correct options mentioned above. Refer to the documentation for guidance. To check and trigger your Cron function, you can use a plugin … Read more

Call to undefined function create_function() – PHP 8.2

You are going to want to edit this line: add_action( ‘plugins_loaded’, create_function( ”, ‘global $BBCode; $BBCode = new BBCode();’ ) ); You will want to make yourself an actual function. Probably something like this: function my_hacked_function(){ global $BBCode; $BBCode = new BBCode(); } add_action( ‘plugins_loaded’, ‘my_hacked_function’); I’ve not tested this. However, this is the general … Read more

Twenty Twenty-Four Theme, where to put the personalized CSS style rules?

YES (finally).. The specific answer for this template I found in a WP forum was a bit misleading, which took me hours lost searching for what they meant. So: The section for personalized CSS styles is located directly in “Twenty Twenty-Four” Theme Editor, just go: Appearance (themes); Editor (site-editor); Left Menu -> Styles (wp_global_styles); Up … Read more

What is the real purpose of the parameter $option_group in the function register_setting()?

The $option_group parameter of register_setting should match the $option_group parameter of settings_fields, which is typically used as part of creating a custom settings page. When you use register settings with register_setting(), your registered settings are added to a global variable of allowed options, where they are grouped by the $option_group parameter. When you submit your … Read more