
Similar Posts
How to add additional content from the first paragraph of the content (the_content())?
add_filter( 'the_content', 'hidden_image_before_content' ); function hidden_image_before_content( $content ){ global $post; if ( is_singular('post') && has_post_thumbnail() ){ $content = preg_replace( "/<p>/", '<p class="hide">' . get_the_post_thumbnail($post->ID, 'full') . '</p><p>', $content, 1 ); } return $content; }

Override InWave Jobs template to the current theme
Override InWave Jobs template to the current theme is little bit hard for the WordPress beginners so I want to write tutorials that can help them solving this issue. Before that, just a little background for InWave Jobs. InWave Jobs is created by inwavethemes which I beleive many WordPress users is now using this, easy and very powerful plugin….
Dequeue or remove Gravity Forms style or CSS
Dequeue or remove Gravity Forms style or css in your WordPress site. Common styles of Gravity Forms is `formreset.css`, `datepicker.css`, `formsmain.css`, `readyclass.css`, and `browsers.css`. Gravity Forms has action called `gform_enqueue_scripts`, you can visit the link for more information. <link rel='stylesheet' id='gforms_reset_css-css' href='http://example.com/wp-content/plugins/gravityforms/css/formreset.css?ver=1.7.11' type='text/css' media='all' /> <link rel='stylesheet' id='gforms_datepicker_css-css' href='http://example.com/wp-content/plugins/gravityforms/css/datepicker.css?ver=1.7.11' type='text/css' media='all' /> <link rel='stylesheet' id='gforms_formsmain_css-css'…
Add different column classes
Add column classes and add first class in every first column. Just change the _index = ( _index + 3 ); to your custom column. Example, if you want to create 5 columns change the _index + 3 to _index + 4 if you want to create 6 columns change the _index + 3 to…

PHP Notice: unserialize(): Error at offset of bytes
PHP Notice: unserialize(): Error at offset of bytes is showing when you edited the serialized text. In my end, I have serialized text and change the text. This will mess up serialized character count. This error show on my end `PHP Notice: unserialize(): Error at offset 2025 of 3529 bytes` and to fix the issue,…
Many thanks if you are so kind to fairly share this information.