dhurlburtusa
Forum Replies Created
-
Forum: Reviews
In reply to: [Create Block Theme] Installation Failed – Missing style.csscreate-block-theme
is a plugin, not a theme. You don’t upload it as a theme. You install it via the Plugins UI in the WP admin.Forum: Developing with WordPress
In reply to: How to Call comments_popup_link with a Specific PostForum: Developing with WordPress
In reply to: How to Call comments_popup_link with a Specific PostThanks @bcworkz.
So, would adding something similar to the following function to a site-specific plugin or
functions.php
of my child theme work so that I don’t lose what the current post may be?function myprefix__the_comments_popup_link ( $post_id, ...$args ) { global $post; $curr_post_id = get_the_ID(); setup_postdata( $post_id ); call_user_func_array( 'comments_popup_link', $args ); setup_postdata( $curr_post_id ); }
Then I can use
myprefix__the_comments_popup_link
in place ofcomments_popup_link
.Forum: Reviews
In reply to: [Custom Login Page Customizer by Colorlib] poor review@marketinggreenpaint I can’t believe you gave this 1 star. The plugin does as advertised. It is not intended to the ultimate login page plugin. It serves a very specific purpose. Please think more about the impact of your actions before leaving a poor review.
It’s because of reviews like yours that make it more difficult gauge the quality of a plugin because you are judge the plugin based on what you want it to do and not on the plugin’s intention.
- This reply was modified 5 years, 4 months ago by dhurlburtusa.