Select Menu
  • Home
  • Wordpress
  • Blogspot
  • SEO
  • Online Earning
  • About Us
  • Contact Us
  • Sitemap
  • PrivacyPolicy
  • About Us
  • Contact Us
  • Sitemap
  • Privacy Policy
Pressspot - Wordpress, Blogspot Coding And SEO Tutorial
  • Home
  • Wordpress
  • Blogspot
  • SEO
  • Earning
wordpress
Showing posts with label wordpress. Show all posts
Showing posts with label wordpress. Show all posts

Tuesday, 28 August 2018

সিহাব সুমন

Do you know? how to add youtube video to wordpress post.

  সিহাব সুমন      Tuesday, 28 August 2018     wordpress      2 comments   
Now days youtube is a biggest video search and play engine. so gradually it is need to use youtube video in our wordpress post. for adding youtube video in your wordpress posts there are many plugins. also you can embed youtube video on your blogger blog or blogspot blog but today i am sharing some code which is very helpful for add youtube video to wordpress posts without any kinds of plugins. for this please follow some steps very carefully:
add youtube video to wordpress
add youtube video to wordpress
(Please backup your sites file and database before editing)
1. At first go to your wordpress sites dashboard.
2. Now select your theme which theme you want to edit.
3. Now open your themes 'functions.php' file.
4. Copy bellow code:
/*
    Shortcode to display youtube thumbnail on your wordpress blog.
    Usage:
    [youtube_thumb id="VIDEO_ID" img="0" align="left"]
    VIDEO_ID= Youtube video id
    img=0,1,2 or 3
    align= left,right,center
*/
function wp_youtube_video_thumbnail($atts) {
     extract(shortcode_atts(array(
          'id' => '',
          'img' => '0',
          'align'=>'left'
     ), $atts));
    $align_class='align'.$align;
    return '<img src="http://img.youtube.com/vi/'.$id.'/'.$img.'.jpg" alt="" class="'.$align_class.'" />';
}
add_shortcode('youtube_thumb', 'wp_youtube_video_thumbnail');
5. Now paste this code in 'functions.php' file and save and close it.
6. Now paste this code in your wordpress blog post.
[youtube_thumb id="rNWeBVBqo2c" img="0" align="center"]
(Change 'rNWeBVBqo2c' with your video id)
For following this article you can add youtube video to wordpress posts and if you want to know more about wordpress and blogger or blogspot then you can visit my another article in this blog.
Read More
সিহাব সুমন

After wordpress install you should be complete 10 tasks.

  সিহাব সুমন      Tuesday, 28 August 2018     wordpress      1 comment   
You can make a wordpress blog without any kinds of programming knowledge. for dynamic website or blog wordpress is best. my blog is inreached with huse of wordpress tips and tricks here you find also wordpress tutorial bangla for this one of my blog site is https://itbatayan.blogspot.com/ here you can many bangla tutorial for wordpress. today i am sharing some tasks which is very important to complete after wordpress installation in web server
wordpress tutorial bangla

DELETE ADMIN PROFILE

when you install wordpress then wordpress creates a profile named 'admin' if you not delete this profile then it can reduce your wordpress sites security level. so after wordpress istall delete 'admin' profile.

USE STRONG PASSWORD

Strong password use very important for a website. because if your password is weak then it can be fall in hackers hand. so use strong password for your site's security.

CHANGE PERMALINK STRUCTURE

You can choose your wordpress permalink which you want. default permalink is not SEO friendly and its structure is some complex. so you set your wordpress sites permalink easy and SEO friendly such as: %postname%

DELETE UNUSABLE PLUGINS

When you install wordpress in your server then it automatically install some plugins which is not important and its security is very weak. if you not interested about this then you can delete this plugins. more plugins use is not good it can down your wordpress sites loading time.

DELETE EXTRA THEMES

New wordpress package contains many default themes. delete all of themes except your chosen one for this your site become some faster.

USE FAVICON

Favicon is a must have tools. it brings your sites personality and ornaments. so use exceptional favicon in your site.

USE SECURITY PLUGINS

Security is a essential things for your wordpress site. for better security you can use security plugins. although you can secure your site manually but plugin use save your time for security. there are many of security plugins for free and paid.

USE SEO PLUGIN

Without SEO your website is not to be popular. without SEO search engine couldn't know your website. so use SEO plugin for your sites popularity and spreading.

USE SOCIAL MEDIA PLUGIN

Most of your sites visitors come from varieties social sites. so use social media plugins which help you share your post in many social media sites.

STOP SPAMMING IN YOUR WEBSITE

Spamming is a great barrier for a websites popularity. you can stop spam in your wordpress site by usig 'Akismat' plugin.

So dear visitor, if you really love my blog you can request any kinds of wordpress and blogspot related tips through comment box including wordpress tutorial bangla then i will try to serve you that ones. Thanks.
Read More
সিহাব সুমন

Some computer keyboard shortcuts for your wordpress!!

  সিহাব সুমন      Tuesday, 28 August 2018     wordpress      No comments   
Although wordpress is a easy and comfortable content management system. but if you use some computer keyboard shortcuts for wordpress then you feel some relax from mouse handling.
computer keyboard shortcuts
computer keyboard shortcuts


  • Link: Alt + Shift + A
  • Bold: Ctrl + B
  • Align Center: Alt + Shift + C
  • Strikethrough: Alt + Shift + D
  • Edit HTML: Alt + Shift + E
  • Align Left: Alt + Shift + F
  • Full Screen editing: Alt + Shift + G
  • Help: Alt + Shift + H
  • Italics: Ctrl + I
  • Align Full: Alt + Shift + J
  • List Item (li): Alt + Shift + L
  • Insert image: Alt + Shift + M
  • Check Spelling: Alt + Shift + N
  • Ordered List (ol): Alt + Shift + O
  • Publish the Post: Alt + Shift + P
  • Blockquote: Alt + Shift + Q
  • Align Right: Alt + Shift + R
  • Unlink: Alt + Shift + S
  • Read More: Alt + Shift + T
  • Unordered List: Alt + Shift + U
  • Advanced Editor: Alt + Shift + V
  • Unquote: Alt + Shift + W
  • Redo: Ctrl + Y
  • Undo: Ctrl + Z
  • Advanced Editor: Alt + Shift +Z
  • Various header sizes: Ctrl +Number (eg: Ctrl+1,2,3,4,5,6)
hi friends, if you feel some good for this computer keyboard shortcuts for wordpress then my article writting is success. if you have any openion then you can suggest me.
Thanks for reading my article.
Read More
সিহাব সুমন

Do you know? how to stop all external request on your wordpress blog?

  সিহাব সুমন      Tuesday, 28 August 2018     wordpress      2 comments   
At first take my salam, hope all of you are very fine. i am also. wordpress is a number one blogging platform. it is easy to use and manage. but some times it suffers from some little little problems. although keep update is important for blog owners but some person not interested to get any external request. such as update notice. which is come from external. so if you not like to see this kinds of external request then follow this steps:
1. At first go to your 'cpanel'
2. Open your 'wp-config.php' file in edit mode.
3. Copy and paste this code in your 'wp-config.php' then save this.

define('WP_HTTP_BLOCK_EXTERNAL', true);

 From now all kinds of external request is stop.
Read More

Tuesday, 12 June 2018

সিহাব সুমন

If your wordpress theme doesn't support 'Menu' you can try this post for 'Menu' support.

  সিহাব সুমন      Tuesday, 12 June 2018     wordpress      4 comments   
some low quality wordpress theme doesn't support menu. or when a wordpress theme maker create new custom theme then need menu support for themee. however if your wordpress theme doesn't support menu then pressspot can help you for doing this then copy this code:
function register_my_menus() {
  register_nav_menus(
    array( 'header-menu' => __( 'Header Menu' ) )
  );
}
add_action( 'init', 'register_my_menus' );
after copy paste in in your themes 'functions.php' file and save it. now you copy this code:
<?php wp_nav_menu( array( 'theme_location' => 'header-menu' ) ); ?>
after copy paste it where you can display your menu. you also done. for many tips and code visit pressspot blog more times. pressspot blog is an updated blog.
Thanks.
Read More

Wednesday, 18 April 2018

সিহাব সুমন

Hide 'Screen Option' tab from your wordpress dashboard with some coding !!!

  সিহাব সুমন      Wednesday, 18 April 2018     wordpress      1 comment   
Hope all of you are very fine. when we visit our wordpress dashboard then we see a tab menu on lef side corner which is named 'Screen Option' like this:
In this menu we not need more important work so if you want you can hide it from your wordpress sites dashboard. for this work you need copy this code:
function remove_screen_options_tab()
{
    return false;
}
add_filter('screen_options_show_screen', 'remove_screen_options_tab');
After copy that code go to your wordpress dashboard and select edit of yur current theme now open 'functions.php' file with edit mode and paste here. after paste save it. now refresh your wordpress dashboard now you can see that 'Screen Option' tab is hidden.
Read More

Tuesday, 17 April 2018

সিহাব সুমন

Wordpress file upload button or 'add media' button not working? this is the solution!!

  সিহাব সুমন      Tuesday, 17 April 2018     wordpress      1 comment   
How are you? wish all of you are very fine. im also fine. you know that i always share without plugin post. today i am sharing a nice code sniplets for wordpress. with this code snippets you can add a brand new 'Add media' button or wordpress file upload button in your wordpress site. which is like that:
wordpress file upload
wordpress file upload
So for adding brand new 'add media' button copy code from below:
// Custom media buttons
function zg_post_buttons()
          {
          global $post_ID, $temp_ID;
          $uploading_iframe_ID = (int) (0 == $post_ID ? $temp_ID : $post_ID);
          $generic_title = 'Upload/Insert';
          $media_upload_iframe_src = "media-upload.php?post_id=$uploading_iframe_ID";
          $media_title = 'Add Media';
          $media_button = '<a href="' . $media_upload_iframe_src . '&TB_iframe=true" id="add_media" class="thickbox" title="' . $media_title . '" onclick="return false;"><img src="images/media-button-other.gif" alt="' . $media_title . '" /></a>';
          $video_upload_iframe_src = apply_filters('video_upload_iframe_src', "$media_upload_iframe_src&type=video");
          $video_title = 'Add Video';
          $video_button = '<a href="' . $video_upload_iframe_src . '&TB_iframe=true" id="add_video" class="thickbox" title="' . $video_title . '" onclick="return false;"><img src="images/media-button-video.gif" alt="' . $video_title . '" /></a>';
          $audio_upload_iframe_src = apply_filters('audio_upload_iframe_src', "$media_upload_iframe_src&type=audio");
          $audio_title = 'Add Audio';
          $audio_button = '<a href="' . $audio_upload_iframe_src . '&TB_iframe=true" id="add_audio" class="thickbox" title="' . $audio_title . '" onclick="return false;"><img src="images/media-button-music.gif" alt="' . $audio_title . '" /></a>';
          $image_upload_iframe_src = apply_filters('image_upload_iframe_src', "$media_upload_iframe_src&type=image");
          $image_title = 'Afbeeldingen uploaden';
          $image_button = '<a href="' . $image_upload_iframe_src . '&TB_iframe=true" id="add_image" class="thickbox" title="' . $image_title . '" onclick="return false;"><img src="images/media-button-image.gif" alt="' . $image_title . '" /></a>';
          // add/remove values here
          return $media_title . ':' . $media_button;
          }
add_action('media_buttons_context','zg_post_buttons');
after copy paste it in your wordpress themes 'functions.php' file and save it. now refresh your dashboards 'new post' page and see this new 'Add media' button or wordpress file upload button is displaying.
Thanks for reading my blog.





Read More

Sunday, 15 April 2018

সিহাব সুমন

how to change the permalink in wordpress without plugins ?

  সিহাব সুমন      Sunday, 15 April 2018     wordpress      1 comment   
how to change the permalink in wordpress
how to change the permalink in wordpress

Generally we set wordpress permalink from setting option. but if you try you can set permalink in your wordpress without setting option. but do you know? how to change the permalink in wordpress without any plugins? for this you need some code. if you want to get this then follow bellow steps:
1. At first go to your wordpress sites admin panel.
2. Choose edit on your current theme.
3. Then select ‘functions.php’ file.
4. Now copy bellow code
// set permalink
function set_permalink(){
global $wp_rewrite;
$wp_rewrite->set_permalink_structure('/%year%/%monthnum%/%postname%/');
}
add_action('init', 'set_permalink');
PROBLEM COPY? TRY HERE!!
5. After copy code paste in your current themes 'functions.php' file and save.
Now your permalink is changed. i am sharing bellow some permalink structure for you. please see this:
/%year%/%monthnum%/%day%/%postname%/
/%year%/%monthnum%/%postname%/
/archives/%post_id%
/%postname%/
Thanks for visiting my blog and reading my article.
Read More

Saturday, 14 April 2018

সিহাব সুমন

Stop dragging effect for wordpress metabox without any kinds of plugins!!

  সিহাব সুমন      Saturday, 14 April 2018     wordpress      2 comments   
At first take my salam. hope all of you are very fine. when we visit our wordpress sites dashboard, then we see some meta box and if you want you can change place with mouse drugging. like that:
if you want then you can stop this dragging effect for meta box. for this work follow bellow steps:
1. First go to your admin panel.
2. Now select edit for current usage themes.
3. Now select ‘functions.php’file.
4. Now copy bellow code and paste in your themes 'functions.php' file and save it
function disable_drag_metabox() {
wp_deregister_script('postbox');
}
add_action( 'admin_init', 'disable_drag_metabox' );
 PROBLEM COPY CODE? TRY HERE!!
 Now try to drag your metabox. i am sure you are not able to drag meta box.
Read More
সিহাব সুমন

Use gravatar image as your wordpress blogs favicon!

  সিহাব সুমন      Saturday, 14 April 2018     wordpress      No comments   
favicon image is the one of the important thing for not only wordpress but also every websites. and gravatar image is very familiar to every wordpress users. today i am sharing some codes, which is very useful. with this code you can set gravatar image as your favicon image like this:
for this work please follow this steps given bellow:
* Create a gravatar account and save an image for gravatar image from here with email which is using in your wordpress sites admin email.
1. First go to your wordpress admin panel.
2. Now go to theme editor
3. Now select ‘functions.php’ file.
4. Now copy bellow code and paste and save in your 'functions.php' file.
function gravatar_favicon() {
$GetTheHash = md5(strtolower(trim(get_bloginfo('admin_email'))));
return 'http://www.gravatar.com/avatar/' . $GetTheHash . '?s=16';
}
function favicon() {
echo '';
}
add_action('wp_head', 'favicon');
PROBLEM COPY CODE? TRY HERE!
now refresh your wordpress site and see that, your gravatar is using as your favicon image.
Thanks for visiting my blog and my article.

Read More
সিহাব সুমন

Do you know? what is the counting of total image usage of your wordpress blog?

  সিহাব সুমন      Saturday, 14 April 2018     wordpress      No comments   
Total image counting is not a important thing. but if you know this trick, you will show total number of usage image in any place of your wordpress site or blog. for show total number of usage image copy this code:

function img_count(){
$query_img_args = array(
'post_type' => 'attachment',
'post_mime_type' =>array(
'jpg|jpeg|jpe' => 'image/jpeg',
'gif' => 'image/gif',
'png' => 'image/png',
),
'post_status' => 'inherit',
'posts_per_page' => -1,
);
$query_img = new WP_Query( $query_img_args );
echo $query_img->post_count;
}
PROBLEM COPY CODE? TRY HERE!!
after copy this code paste it into your themes 'functions.php' file. now copy another code from bellow:
<?
img_count();
?>
PROBLEM COPY CODE? TRY HERE!!
after copy this code paste it in your theme where you want to show total number of image in your wordpress site.
Read More
সিহাব সুমন

Easily stop browser update notice display on wordpress sites dashboard

  সিহাব সুমন      Saturday, 14 April 2018     wordpress      No comments   
when our browser is outdated or a new version is available then wordpress site display browser update notice all of users like this:
somotimes it is very bother for users. if you want you can stop displaying this browser update notice. for this copy this code:
function disable_browser_upgrade_warning() {
remove_meta_box( 'dashboard_browser_nag', 'dashboard', 'normal' );
}
add_action( 'wp_dashboard_setup', 'disable_browser_upgrade_warning' );
PROBLEM COPY CODE? TRY HERE!!
after copy paste it in your wordpress themes 'functions.php' file and save it. you done this!!!!!!
Read More
সিহাব সুমন

Hide wordpress update warning from all users except administrator.

  সিহাব সুমন      Saturday, 14 April 2018     wordpress      No comments   
we know that when a new version of wordpress released then an update warning is displayed all of wordpress administrator and all of your users. like this:
all the times this kinds of warning is not good for your site or blog. if a hacker know your wordpress version number then hacking is so easy for him. although hacker dont know your wordpress sites version number but if he see update warning then he understand that your wordpress version is not updated and obviously previous version. then he will attack a little bit relaxed. so we should hide our wordpress update warning from all of users. for this copy bellow code:
function wp_hide_update() {
global $current_user;
get_currentuserinfo();

if ($current_user->ID != 1) { // only admin will see it
remove_action( 'admin_notices', 'update_nag', 3 );
}
}
add_action('admin_menu','wp_hide_update');
 PROBLEM COPY CODE? TRY HERE.
 After copy code paste it in to you themes 'functions.php' file and save it. now your wordpress not show update warning all your users except you(admin).
Thanks.
Read More
সিহাব সুমন

Add extra information field in wordpress user profile without plugins!!

  সিহাব সুমন      Saturday, 14 April 2018     wordpress      No comments   
When a wordpress user see their profile here he see some information field such as: google, facebook etc. but some times we need more extra field to add here. then you can create many extra field without any kinds of plugins. for this copy below code:
add_action( 'show_user_profile', 'my_show_extra_profile_fields' );
add_action( 'edit_user_profile', 'my_show_extra_profile_fields' );

function my_show_extra_profile_fields( $user ) { ?>

    <h3>Extra profile information</h3>

    <table class="form-table">

        <tr>
            <th><label for="twitter">Twitter</label></th>

            <td>
                <input type="text" name="twitter" id="twitter" value="<?php echo esc_attr( get_the_author_meta( 'twitter', $user->ID ) ); ?>" class="regular-text" /><br />
                <span class="description">Please enter your Twitter username.</span>
            </td>
        </tr>

    </table>
<?php }
PROBLEM COPY CODE? TRY HERE!!
after copy this code paste in in your wordpress themes 'functions.php' file and save it. now you see the user profile is full with many extra field which is contains in this code. you can change, increase, decrease field from code.
Thanks for visiting and reading my article.
Read More

Friday, 13 April 2018

সিহাব সুমন

Do you know? how to redirect your user after logout to home page in wordpress.

  সিহাব সুমন      Friday, 13 April 2018     wordpress      No comments   
We know that when a user successfully logout from a wordpress blog then wordpress display him 'login page' gradually. it is no a better system all the time. if you want you can redirect your user to home page after successfully logout. for this you need copy bellow code:

add_action('wp_logout','auto_redirect_after_logout');
function auto_redirect_after_logout(){
  wp_redirect( home_url() );
  exit();
}
PROBLEM COPY CODE? TRY HERE.
after copy paste it your themes 'functions.php' file and save it. now if a user logout from your wordpress blog then wordpress automatically redirect your blogs home page.

Thanks for reading my blog post.
Read More
সিহাব সুমন

Do you know? how to redirect your user after login to home page in wordpress.

  সিহাব সুমন      Friday, 13 April 2018     wordpress      No comments   
We know that when a user successfully login a wordpress blog then wordpress display him 'dashboard' gradually. it is no a better system all the time. if you want you can redirect your user to home page after successfully login. for this you need copy bellow code:
/* redirect users to front page after login */   
function redirect_to_front_page() {
    global $redirect_to;
    if (!isset($_GET['redirect_to'])) {
        $redirect_to = get_option('siteurl');
    }
}
add_action('login_form', 'redirect_to_front_page');
PROBLEM COPY CODE? TRY HERE.
after copy paste it your themes 'functions.php' file and save it. now if a user login your wordpress blog then wordpress automatically redirect your blogs home page against dashboard.

Thanks for reading my blog post.

Read More
সিহাব সুমন

Change wordpress excerpt ellips with readmore link.

  সিহাব সুমন      Friday, 13 April 2018     wordpress      No comments   
We know that when we customize a new wordpress theme then we need a null theme or starter theme for customization. this types of theme is fully customizable so all of their functions are wordpress basic as usual. a common problem in this theme is 'excerpt ellips' which is like this '[…]' it stay on worpdress starter themes after excerpts like this:
 if you want to replace this with readmore link then you need copy this code:
function ld_new_excerpt_more($more) {
    global $post;
    return '<a class="more-link" href="'. get_permalink($post->ID) . '">&nbsp;Read more.</a>';
}
add_filter('excerpt_more', 'ld_new_excerpt_more');
IF PROBLEM TO COPY CODE TRY HERE
after copy this code paste it in to your themes 'functions.php' file and save it. now see that excerpt ellips is replaced with 'Readmore' link like this:
Thanks for visiting my blog.

Read More
সিহাব সুমন

Easily change wordpress login logo without any plugin!!

  সিহাব সুমন      Friday, 13 April 2018     wordpress      No comments   
We know that wordpress is one of the most likely and lovely content management cms in the world. it is highly customizable cms one can easily edit its theme for personal use. In wordpress login page we always see a default logo like this:
now if you want to use this place your personal logo then you can doen it. today i am sharing some code. this code will help you for changing wordpress default logo with your own logo. for this at first copy below code:
function custom_login_logo() {
    echo '<style type="text/css">'.
             'h1 a { background-image:url('.get_bloginfo( 'template_directory' ).'/images/author-site.png) !important; }'.
         '</style>';
}
add_action( 'login_head', 'custom_login_logo' );
FACING PROBLEM COPY CODE? CLICK HERE!
after copy paste it in to your themes functions.php file. now you change your logo 'url' and save it. now you logout from your site and go to login page there you see your custom login logo like this:

Thanks for visiting and reading my blog post. 
Read More
সিহাব সুমন

How to replace 'Enter title here' from wordpress new post title box.

  সিহাব সুমন      Friday, 13 April 2018     wordpress      No comments   
We know and see that, when we open a new post page in wordpress then a default text display in title box which is 'Enter title here' and looks like that:

you can change this default text 'Enter title here' with your own sentence. for this you need copy this code:
function title_text_input( $title ){
     return $title = 'এখানে পোস্টের শিরোনাম লিখুন..';
}
add_filter( 'enter_title_here', 'title_text_input' );
Problem to copy? try here!!
After copy paste it in to your wordpress blogs themes 'functions.php' file and save. now again open a new post page and you can see changed title box like that:

you can change 'এখানে পোস্টের শিরোনাম লিখুন..' with which you want.
Thanks for visiting and reading my blog post.
Read More

Thursday, 12 April 2018

সিহাব সুমন

Change default gravatar image from your wordpress blog without any plugin!!

  সিহাব সুমন      Thursday, 12 April 2018     wordpress      No comments   
When we create an account a wordpress blog then we see a default gravatar image like this:
(although that gravatar image you can change.) This gravatar image choosen by wordpress team. but if you can want, you can change this default gravatar image without plugin. when a new user will register your site then him/her default gravatar will changed automatically. for this please follow:
1. Copy this codes:
add_filter( 'avatar_defaults', 'custom_avatar' );
    function custom_avatar($avatar_defaults){
    $custom_avatar = get_stylesheet_directory_uri() . '/images/author-site.png';
    $avatar_defaults[$custom_avatar] = "My Default Avatar";
    return $avatar_defaults;
 }
Any problems copy code here:
2. Now paste it on yor wordpress themes 'functions.php' file and save it.
Done!!! now you can change default gravatar from settings like this:

Thanks for visiting my post.
Read More
Older Posts → Home

Popular Posts

  • How to add autoplay background music on blogger blog.
    We know that blogger or blogspot is a favorite blogging platform for all of bloggers. it is easy to use and free platform. one can easily ...
  • Do you know? how to stop all external request on your wordpress blog?
    At first take my salam, hope all of you are very fine. i am also. wordpress is a number one blogging platform. it is easy to use and manag...
  • how to change the permalink in wordpress without plugins ?
    how to change the permalink in wordpress Generally we set wordpress permalink from setting option. but if you try you can set permal...
  • Download NID Server Copy- 2021
  • Stop dragging effect for wordpress metabox without any kinds of plugins!!
    At first take my salam. hope all of you are very fine. when we visit our wordpress sites dashboard, then we see some meta box and if you wa...
  • After wordpress install you should be complete 10 tasks.
    You can make a wordpress blog without any kinds of programming knowledge. for dynamic website or blog wordpress is best. my blog is inreac...
  • Hide 'Screen Option' tab from your wordpress dashboard with some coding !!!
    Hope all of you are very fine. when we visit our wordpress dashboard then we see a tab menu on lef side corner which is named 'Screen O...
  • If your wordpress theme doesn't support 'Menu' you can try this post for 'Menu' support.
    some low quality wordpress theme doesn't support menu. or when a wordpress theme maker create new custom theme then need menu support...
  • মোবাইলের মাধ্যমে গুগল ম্যাপে আপনার বাড়ী যুক্ত করুন সহজ পদ্ধতিতে !!
  • How to change default footer text from wordpress dashboard.
    When we enter our wordpress sites dashboard then we see some default text and link like this: which is wordpress related. however, if y...

Contact Form

Name

Email *

Message *

Subscribe to our email newsletter & receive updates right in your inbox.

Blog Archive

Popular Posts

  • How to add autoplay background music on blogger blog.
    We know that blogger or blogspot is a favorite blogging platform for all of bloggers. it is easy to use and free platform. one can easily ...
  • Do you know? how to stop all external request on your wordpress blog?
    At first take my salam, hope all of you are very fine. i am also. wordpress is a number one blogging platform. it is easy to use and manag...
  • how to change the permalink in wordpress without plugins ?
    how to change the permalink in wordpress Generally we set wordpress permalink from setting option. but if you try you can set permal...
  • Download NID Server Copy- 2021
  • Stop dragging effect for wordpress metabox without any kinds of plugins!!
    At first take my salam. hope all of you are very fine. when we visit our wordpress sites dashboard, then we see some meta box and if you wa...
click here

Labels

blogspot (1) wordpress (27)

Facebook Fan

BANNER 728X90

মোট পৃষ্ঠাদর্শন

Sparkline

আমার সম্পর্কে

  • সিহাব সুমন
  • itbatayan

Responsive Ads

Responsive Ads Here
Powered by: Blogger
Sitemap | Terms Condition |
Copyright © Pressspot - Wordpress, Blogspot Coding And SEO Tutorial