How to render HTML content using the Interactivity API?

Rather than binding text with a directive, you could bind a callback with data-wp-watch that sets the inner HTML of the div when it runs: <div data-wp-watch=”callbacks.renderContent”></div> callbacks: { renderContent() { const context = getContext(); const element = getElement(); element.ref.innerHTML = context.randomPost.content.rendered; }, }, Since the callback uses context.randomPost.content.rendered, it should run any time that … Read more

Filtering the Navigation Block

First I was about to suggest you’d try replacing the render_callback of the core/navigation block. The custom rendering callback would have returned a class extending the WP_Navigation_Block_Renderer class. E.g. add_filter( ‘block_type_metadata_settings’, ‘wpse_426956_replace_core_nav_block_renderer’, 10, 2 ); function wpse_426956_replace_core_nav_block_renderer( array $settings, array $metadata ): array { if ( ‘core/navigation’ === $metadata[‘name’] ) { $settings[‘render_callback’] = ‘wpse_426956_my_core_nav_block_renderer’; } … Read more

$wpdb->get_results() into foreach() returns always the word “Array” on top of the list . How to get rid of?

I’m not sure why you are getting errors but I can show you haw to defensively find and react to them. This is your code $rows = $wpdb->get_results($wpdb->prepare(“SELECT `rul_value` FROM ” . _ROLES_ . ” WHERE `rul_type` = %s AND `rul_value` LIKE %s”, ‘role’, ‘%intera%’)); foreach($rows as $row) { $singleParts .= $row->rul_value . “\n”; } … Read more

Custom date column in user table not sorting correctly

You have to add following code after your code to get the dates sorting correctly. It’s working correctly for me. Hope it will help. function change_user_order( $args ){ if( isset( $args[‘orderby’] ) ) { $args[‘meta_key’] = $args[‘orderby’]; } return $args; } add_filter( ‘users_list_table_query_args’, ‘change_user_order’ );

medium_large image size not displaying properly on the frontend?

I saw this problem recently on a project, and the answer is to disable responsive image markup. Simply add the below code into your theme’s functions.php and you are golden: add_filter( ‘wp_calculate_image_srcset’, ‘__return_false’ ); Ref: How do I disable responsive images in WP 4.4? Afterwards, you can insert the Medium Large a.k.a. medium_large images (if … Read more

Display Custom Text if date_picker date is expired

If you’ve dropped it right into functions.php and not inside an action hook, the code is running before ACF has initialized. Try running on acf/init action (untested): add_action( ‘acf/init’, static function () { $currentdate = new DateTime(); $date = get_field( ‘date_picker’, false, false ); $date = new DateTime( $date ); if ( $currentdate > $date … Read more

Send An Email to Admin on User Profile Completion

Based on your question, you could simply call the WordPress function wp_mail( $to, $subject, $message, $headers ); when your var $user_progress[‘completion_percentage’] equal 100 %. <?php if( $user_progress[‘completion_percentage’] === 100 ) { // Complete your variables with original code $to = “[email protected]”; $subject = __(“New user registration”, “yourdomain”); $headers = array(‘Content-Type: text/html; charset=UTF-8’); $message = “A … Read more

How to set up a private custom post type that is accessible in the administrative dashboard?

For the frontend, you can use template_redirect action to identify the page, and perform redirects or adjust the request on the fly (untested): add_action( ‘template_redirect’, static function () { if ( ! is_singular( ‘cpt’ ) && ! is_post_type_archive( ‘cpt’ ) ) { return; } if ( current_user_can( ‘read_private_pages’ ) || current_user_can( ‘read_private_posts’ ) ) { … Read more