Home

Hey want to remove website title name from Post title name, So Paste simple code in your WordPress Theme and remove Website name from Post Title Name. How to Remove Site Name from Post Title >> Open Your active theme’s functions.php file, And Paste this code. add_filter( ‘document_title_parts’, function( $title ) { unset( $title[‘site’] ); […]

Hey I Tell You How to Minify you CSS code without using any plugin in WordPress, It very hard to minify but its Great way to minify your WordPress’s website. How to Minify CSS >> Open all CSS code and remove space after “}”. Example:-  body { margin:10px; padding:10px; } h1 { font-size:22px; margin-bottom:16px; } […]

Contact Us Form This form for contacting you without asking any type of your information, Us Contact us form to your website and connect with audience, How to Add Contact Form You may add contact us form using given code on your active wordpress theme, Just follow simple steps- >> Open active theme’s folder. >> […]

Have you website, And want to create/make Grid type of elements, So you will make this type elements using CSS and HTML. How to Make Grid Style Elements >> Just paste this code in your CSS or Style Section. .thekroyaard-container { display: grid; grid-template-columns: auto auto auto; background-color: blue; padding: 10px; border: 4px solid pink; […]

Description It’s help to ranking your post in web search engines. Add description meta tag in your website without any plugin. Just paste given code in your active theme’s functions.php file. How to add Description Meta Tag >> Open your active theme’s functions.php file and paste this code. /** * description , keyword and canonical […]

Breadcrumb Add breadcrumb and show post’s or page’s location in your WordPress website. So there is two deferent code to show Breadcrumb. How To Add Breadcrumb using code Login cpanel. Add given code in functions.php of active theme’s folder. Use this code when want to show only category name  function get_breadcrumb() { echo ‘<a href=”‘.home_url().'” […]

Permalink Structure Change and add .html extension in post url. Use custom permalink structure option and entre given code in blank field. How to Add .html in post url Open WordPress Dashboard. Go to Setttings and click on Permalink Then click on custom structure and paste /%postname%.html in black field. Then click on SAVE Changes […]

Create .htaccess file for wordpress’s website. open given website link and use online tool for making .htaccess file. Official Website – Click Here How to Create .htaccess open website – click here. Enter your website’s details and fill all fileds. then click on GENERATE .HTACCESS Button. Copy and Paste GENERATED code in your public_html > […]

Label Post Label name is a category name. When you publish any post and add Label name, then automatic show in related item’s in same label name’s post. How To Show Latest Posts with Thumbnail Use this code in where you show specific label name’s post in blogspot website. <style> /* Recent posts by labels […]

Permalink website’s URL is Permalink, Have your website in wordpress and want to customize permalink structure via code, So Open your active theme’s folder and paste given code in functions.php file. /* permalink structure*/ add_action( ‘init’, function() { global $wp_rewrite; $wp_rewrite->set_permalink_structure( ‘/%postname%/’ ); } ); When you paste this, then your new posts and uploaded […]