描述
Adds the ability to enter contact information and output the details in your posts, pages or templates.
Based on the original “Contact Details” by 36Flavours, but the visible text has been translated to Dutch and a bankaccount field has been added.
Use the shortcode [contact type="phone"]
to display any of the contact details, or use the function call <?php if (function_exists('contact_detail')) { contact_detail('phone'); } ?>
.
Once you have defined a contact email address, use the shortcode [contact type="form"]
to output the contact form.
安装
Here we go:
- Upload the
contact
folder to the/wp-content/plugins/
directory. - Activate the plugin through the ‘Plugins’ menu in WordPress.
- Enter you contact details on the options page
Settings > Contact Details
. - Display the details using either the shortcodes or function calls.
常见问题
- How do I edit my contact details?
-
Navigate to the settings page by clicking on
Settings
on the left hand menu, and then theContact Details
option. - How do I include details in my template?
-
You can use the following function call to output details in your templates:
- What contact details can I store?
-
Current available contact fields are:
phone
,fax
,mobile
,email
andaddress
. - How do you fetch contact details without outputting the value?
-
The fourth parameter passed to
contact_detail()
determines whether the value is returned, by setting the value to false.$phone = contact_detail('phone', '<b>', '</b>', false);
The above code will fetch the phone number stored and wrap the response in bold tags.
- How can I customise the contact form?
-
If you require more customisation that cannot be achieved using CSS, you can define your own template file.
To do this add the the attribute
include
to the shortcode tag, e.g.[contact type="form" include="myfile.php"]
.This file should be placed within your theme directory and should include the processing and output of errors.
I suggest you use the
contact.php
file used by the plugin as a starting point / template.
评价
此插件暂无评价。
贡献者及开发者
更新日志
1.0
- This is the very first version, based on “Contact Details” by 36Flavours.