Create Post via email to wordpress WordPress can be configured to enable Creating post via email. To do so you need to follow any of the bellow method Use a plugin Or Configure at wp dashboard You can use any of the following plugin to enable post via email Post by Mail in Jetpack Postie …
Author Archives: Amanur Rahman
Responsive layout using page media
Responsive layout using page media Today I am going to show you how to make website responsive using page media. For doing so you need to understand the screens width of different device like mobile,Tab, Etc. Below is the table of content which specifies various screen width of various devices. /* Table of Contents ================================================== …
Back up Buddy
Back up Buddy Backup Buddy is a premium wordpress plugin which helps to backup restore the wordpress site. It’s really simple and easy to use. I use it. Really helpful. Check the plugin here
Adding content in Meteor Slider
Adding content in Meteor Slider Meteor Slider is an awesome slider plugin by Josh. But only one lacks was there with this plugin I think which has been resolved now. You can add content to meteor slider in the following way. First Copy meteor-slideshow.php from /meteor-slides/includes/ to your theme’s directory to replace the plugin’s default …
Maximum Execution time 30 Second at wordpress
Maximum Execution time 30 Second at wordpress You can Do it By following 1. By Wp-config.php Changes set_time_limit(60); Important – If you are making changes in wp-config.php, then add this line above “/* That’s all, stop editing! Happy blogging. */” comment. 2. In htaccess php_value max_execution_time 60 <stro
Custom lof Slider for wordpress
Custom lof Slider for wordpress Put this at header ======================================================================= <link href=”http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css” rel=”stylesheet” type=”text/css”/> <link rel=”stylesheet” type=”text/css” href=”https://amanurrahman.com/jqslider/css/layout.css” /> <link rel=”stylesheet” type=”text/css” href=”https://amanurrahman.com/jqslider/css/style2.css” /> <style> ul.lof-main-wapper li { position:relative; } </style> <?php /* We add some JavaScript to pages with the comment form * to support sites with threaded comments (when in use). */ if …
Scroll text or Image without Jquery?
Scroll text or Image without Jquery? It is really easy to scrolling text (up, down, left, right) to any direction. Someone may think that it need obviously jquery to do so. Even I also thought like that way. But I got a easy solution for that by <marque> tag of HTML. Here is the code …
Specific category post to a certain place of theme in WordPress ?
Specific category post to a certain place of theme <h2><a href=”http://mydomain.com/?cat=XXX”>TITLE OF CATEGORY</a></h2> <?php query_posts(‘category_name=xxxxxxxxxxxx&order=dsc&showposts=12’); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></a> <br clear=”all”><br /> <?php endwhile; ?> <?php endif; ?>
Contact Form 7 Thank you page
Contact Form 7 Thank you page The one limitation for Contact Form 7 plugin is that after submitting the form it just shows a text says “your message sent” or something like that. But if we want to redirect visitor to a different page that has a full content with some more text with thank you confirmation. …
Adding subtitle to your wordpress post
Adding subtitle to your wordpress post For adding post subtitle simple place the below code in your theme template or wherever you like. <?php { $subtitle = get_post_meta ($post->ID, ‘subtitle’, $single = true); if($subtitle !== ”) echo $subtitle;} ?> After this you have to go to your post then create a custom field named “subtitle” …