Wordpress Tutorials
- Wordpress
- Directory and file structure.
- Wordpress configuration
- Htaccess Configuration
- WP-CONTENT user playground
- Increase file size loading in phpmyadmin on localhost.
- Fatal error: Allowed memory size of x bytes
- wordpress Dashboard
- How to set local host domain or Virtual host
- Header, index and footer page.
- How to create wordpress Themes
- Html to wordpress themes
- Child Themes
- Increase Upload Max Filesize
- wp_enqueue_style & script
- How to make plugin
- Create Plugin
- Insert data into table using plugin.
- Show data from database
- Hook & Filter
- Template Or Custom page template
- Custom Login template
- How to show post on diffrent page.
- Custom widgit
- How to use contact form 7 plugin.
- Wordpress Database
- How to use Duplicator plugin
- How to fix Fatal Error: Maximum Execution Time Exceeded in WordPress
- How to debuggin mode on in wordpress
- Auto update plugin and themes
- How to Transfer WordPress
- How to change a WordPress site URL
- Top 10 issues in wordpress
- wordpress website link
Wordpress setting
Wordpress Function
wordpress top 10 problems
Important Links
How to use a contact form 7 plugin in wordpress.
File name : contactus.php
<div class="col-sm-8">
[contact-form-7 id="1133" title="Contact us"]
</div>
open contact us plugin page
<style>
#special-field{
color: black;
border: 1px solid #C6C8D9;
width: 50%;
}
#special-field-msg{
color: black;
border: 1px solid #C6C8D9;
width: 50%;
height:159px ;
float: ;
position: relative;
right: ;
}
#special-field-msg-text{
color: black;
border: 1px solid #C6C8D9;
position: relative;
float: right;
top: -189px;
margin-right: 132px;
}
p{
margin-left:100px;
}
</style>
<p>Your Name (required)<br />
[text* your-name id:special-field placeholder "Enter Your name here" ] </p>
<p>Your Email (required)<br />
[email* your-email id:special-field placeholder "Enter Your Email here"] </p>
<p>Subject<br />
[text your-subject id:special-field placeholder "Enter Your Subject here"] </p>
<p id='special-field-msg-text' sty le="float: right; margin-right: 96px; margin-top: -189px;" >Your Message<br />
[textarea your-message id:special-field-msg 20*10 placeholder "Enter Your Message here"] </p>
<p>[submit "Send" id:special-field]</p>
#special-field{
color: black;
border: 1px solid #C6C8D9;
width: 50%;
}
#special-field-msg{
color: black;
border: 1px solid #C6C8D9;
width: 50%;
height:159px ;
float: ;
position: relative;
right: ;
}
#special-field-msg-text{
color: black;
border: 1px solid #C6C8D9;
position: relative;
float: right;
top: -189px;
margin-right: 132px;
}
p{
margin-left:100px;
}
</style>
<p>Your Name (required)<br />
[text* your-name id:special-field placeholder "Enter Your name here" ] </p>
<p>Your Email (required)<br />
[email* your-email id:special-field placeholder "Enter Your Email here"] </p>
<p>Subject<br />
[text your-subject id:special-field placeholder "Enter Your Subject here"] </p>
<p id='special-field-msg-text' sty le="float: right; margin-right: 96px; margin-top: -189px;" >Your Message<br />
[textarea your-message id:special-field-msg 20*10 placeholder "Enter Your Message here"] </p>
<p>[submit "Send" id:special-field]</p>