https://millionclues.com/wordpress-tips/making-classes-php-7-compatible/
https://millionclues.com/wordpress-tips/making-classes-php-7-compatible/

https://millionclues.com/wordpress-tips/making-classes-php-7-compatible/

By default the remember me checkbox on WordPress login page is always unchecked and you have to select it every time you visit login page of your website. To be honest, it’s really annoying and frustrating. Well, at least for me. Although, it’s a small thing, but it makes the login form more usable and…

The WordPress Excerpt is an optional summary or description of a post; in short, a post summary. One of the wonderful thing about Excerpt is that it replaces the full content in RSS feeds when the option to display summaries is selected in reading settings. Usually bloggers use excerpts on post stream and archive pages…

By OutsourcedContent — on October 13, 2017 Add this to footer.php before the closing </body>. <script language=”javascript” type=”text/javascript”> document.getElementsByName(‘es_txt_email’)[0].placeholder=”[email protected]”; </script> Where es_txt_email is the name if the <input>. The above script was used to change the placeholder in the Email Subscribers & Newsletters plugin.

By OutsourcedContent — on August 27, 2017 <?php echo apply_filters( ‘the_content’, wp_trim_words( strip_tags( get_post_field(‘post_content’, $recent[“ID”]) ), 55 ) ); ?> where$recent[“ID”]is of the ID of the post. If you are already querying the post and already have a WP_Post object, you can simply use this: <?php echo apply_filters( ‘the_content’, wp_trim_words( strip_tags( $recent[“post_content”] ), 55 )…

By OutsourcedContent — on December 10, 2017 This was a case on a project where a custom listing post type had post meta that specified if it was as platinum sponsor, or a gold sponsor or a verified profile. The job was to list the platinum sponsors at the top on the archive page, then…

Pages are one of WordPress’s built-in Post Types. You’ll probably want most of your website Pages to look about the same. But sometimes, though, you may need a specific Page, or a group of Pages, to display or behave differently. This is easily accomplished with custom Page Templates. WordPress allows you to create custom page…
