Skip to content

Instantly share code, notes, and snippets.

@sudipbd
sudipbd / index.html
Created August 5, 2018 17:07
Using Font Awesome 5 solid icons as pseudo element
<ul>
<li>Get timely updates through conference calls, webcasts and presentations.</li>
<li>Are you a member of the media? Our Newsroom contains our press kit</li>
<li>We develop and grow business leaders.</li>
<li>We always want to keep your home safe and stedy</li>
</ul>
@sudipbd
sudipbd / .htaccess
Created September 14, 2022 06:03
for new websites if welcome message is not shown
DirectoryIndex index.php index.html index.htm
@sudipbd
sudipbd / create new page
Created November 5, 2022 17:36
Shortcode to view product categories on woocommerce
[product_categories]
@sudipbd
sudipbd / home.php
Last active October 2, 2023 17:58
Display Title in Wordpress Custom Post
<?php //for custom post?>
<title><?php bloginfo('name'); ?> <?php is_front_page() ? bloginfo('description') : wp_title(''); ?></title>
<?php //for static homepage?>
<title><?php bloginfo('name'); ?> &raquo; <?php is_front_page() ? bloginfo('description') : wp_title(''); ?></title>
@sudipbd
sudipbd / anyfile.anyext
Created October 2, 2023 18:00
Remove empty lines in sublime text
CTRL+H (Search and Replace)
Search: ^[\s]*?[\n\r]+
**Regular Expression must be on
Replace: with on space