开发者 | Dianakc |
---|---|
更新时间 | 2016年11月17日 11:59 |
捐献地址: | 去捐款 |
PHP版本: | 3.0 及以上 |
WordPress版本: | 3.5 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
In order to allow users to post in your site, firstly visit WordPress panel Settings > General, check the item Membership - Anyone can register and select an user role in New User Default Role, to at least Contributor
.
The Pet Manager autocreate a Add a pet page where users can add pets only if the user is logged in, if not, a log in form is displayed. Any pet post submitted by non-editor/admins will be held for moderation.
Note that users will access default register page, but you can use any other plugin to create frontend forms, or even BuddyPress to keep users connect.
Every pet post can display a contact form (you can turn off this on every post), so visitors can contact the post author. You must use either Jetpack or SlimJetpack in order to use this feature. Also, to avoid spam, is highly recommended to use Akismet.
These page are auto generated to provide a place in your site to search and add pets, you can delete these pages if not wanting to use these features.
You can copy the plugin stylesheet at wp-content/plugins/pet-manager/inc/pet_styles.css
into your own theme stylesheet.
In order to prevent plugin stylesheet from loading also, add the following to your functions.php
:
`add_action( 'wp_print_styles', 'my_deregister_styles', 100 );
function my_deregister_styles() {
wp_deregister_style( 'pet-style' ); //Pet Manager
}`