Category: WordPress

  • “This web page has a redirect loop” Problem Resolved

    I was getting this error, i tried a lot to resolve it and at last i did it and i decided to share so that in future if anybody get this error, he can use this solution as well to resolve this problem. before this my .htaccess file contain <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /…

  • Limit Post Character in WordPress

    Sometime in WordPress we have a requirement that there should be only specific number of Character in our post and there should be read more link which should navigate to some other page. It is very important if you want to show only some lines of data on main page. You can use following code…

  • Gravity form tabindex problem and short code

    If we have single gravity form in our one page then their is not any type of index problem. So if we navigate through our fields then the cursor will go in that sequence in which it should go. But In case when you have multiple Forms on One page then you can face the…

  • Show Custom field in WordPress Post, Custom Field in WordPress

    Custom fields are very useful in WordPress and we can attach lot of information as metadata in our Post. Now we may have requirement in which we want to display these Meta data or Custom field in our Post. If you want to display the custom field data in your post or anywhere just use…

  • Show the Post thumbnail or Feature Image in Post WordPress

    Post thumbnail or Feature image in WordPress post. In our many posts we use feature images and we also want that these images should also display in our post. To display the feature image or Post Thumbnail use the following code.                           <?php if…

  • Limit the Post Title in WordPress

    Sometime we have very long post title and we want that only some part of title should display on main page and whole title should only display on single post page. Following code you can use to perform this task. <?php             foreach( $myposts as $post ):setup_postdata($post)      …

  • Continue Reading, Read More in WordPress Post

    Some time when we have a lot of content in our WordPress Post, We want to display only minimum data on our main page and we redirect our user by a link like “Continue Reading………”, “Read More…….”, “Read Full Story….” etc.   So How we can make such type of links in our post. We…