Skip to main content

Posts

Showing posts from February, 2018
My first  Blogger Tips and Tricks post  received such a positive response that, I have decided to make this a monthly feature. I know sometimes HTML codes and blogging, in general, can make you feel like you’ve just taken a trip in the Tardis..but my wish is to make it as simple as possible for you. Update: I noticed when copying the code from this post the quotes are fancy and can mess with code. Please replace them before using code.  1. Placing Images Side by Side on my Blog.  This is a simple way to place them side by side. Access the HTML side of your post and type the following code: <table> <tbody> <tr> <img alt=”” src=”image url image 1″ width=”180″ /> <img alt=”” src=”image url image 2″ width= “180” /> </tr> </tbody> </table> In the highlighted blue area you will need to place the web-hosted URL of your image. You can use  Photobucket (this  is what I use and it’s fr
When we have excerpts or chapter reveals on site I do not like to copy and paste that long doc into a post. I have using a Google Embedder but it can get annoying and glitchy. Is there anyway to add a scrolling text box to posts? Juliana Hi Juliana! This is absolutely possible.   And luckily, it’s super easy to do! Here’s a preview of what we’ll be creating: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus non finibus tortor, sed ullamcorper massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Integer nulla lacus, maximus at tristique et, accumsan eget metus. Suspendisse arcu nisl, malesuada sit amet ante et, auctor porttitor nisl. Ut dictum leo metus, ac accumsan sem volutpat ac. Nulla leo eros, ultrices quis gravida id, rutrum at enim. Nam et volutpat nunc. Phasellus eu mollis nisl. Aliquam eget scelerisque ex, in dapibus nibh. Interdum et malesuada fames ac ante ipsum primis in faucibus. Suspendisse mollis sem sed nu
Menu Automatically Approve Comments in a Certain Post Category Posted by  Ashley 6th January, 2016 Coding PHP ,  Tutorial ,  WordPress Mohmoh submitted a question about how to approve comments that are made on a post in a specific category: I had used this code to automatically approve comments of a specific category but after the last update wordpress 4.4 this code not work: add_filter ( 'pre_option_comment_moderation' , 'auto_aprove_posts_b' ); add_filter ( 'pre_option_comment_whitelist' , 'auto_aprove_posts_b' ); function auto_aprove_posts_b ( $option ) { if ( in_category ( '20' ) ) return 0 ; return $option ; } do you know how to automatically approve comments in the posts of a specific category? mohmoh To do this in WordPress, you’d want to hook into the  pre_comment_approved filter. This filter allows you to adjust the comment’s approval status before adding it to the datab