| 3 | 6 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,41 @@ |
| 0 |
+=== Rucy === |
|
| 1 |
+Contributors: gips-nita |
|
| 2 |
+Tags: post, update content, update post, update page, schedule update, reserve update, reservation update, rucy, Rucy |
|
| 3 |
+Requires at least: 3.5+ |
|
| 4 |
+Tested up to: 3.9 |
|
| 5 |
+Stable tag: 0.1.0 |
|
| 6 |
+License: GPLv2 or later |
|
| 7 |
+License URI: http://www.gnu.org/licenses/gpl-2.0.html |
|
| 8 |
+ |
|
| 9 |
+Add reservation update published content. |
|
| 10 |
+ |
|
| 11 |
+== Description == |
|
| 12 |
+ |
|
| 13 |
+You can automatically update the DateTime specified posts published by this plugin. |
|
| 14 |
+ |
|
| 15 |
+Post and Page, specify custom post type is also possible. |
|
| 16 |
+ |
|
| 17 |
+But in your WordPress, this plugin is a prerequisite is that the reservation can be posted (can use WP_CRON is required). |
|
| 18 |
+ |
|
| 19 |
+== Installation == |
|
| 20 |
+ |
|
| 21 |
+You can install this plugin directly from your WordPress dashboard: |
|
| 22 |
+ |
|
| 23 |
+ 1. Go to the *Plugins* menu and click *Add New*. |
|
| 24 |
+ 2. Search for *rucy*. |
|
| 25 |
+ 3. Click *Install Now* next to the *rucy* plugin. |
|
| 26 |
+ 4. Activate the plugin. |
|
| 27 |
+ 5. Configure reservation post type in *rucy* in *Setting* menu. |
|
| 28 |
+ |
|
| 29 |
+== Screenshots == |
|
| 30 |
+ |
|
| 31 |
+1. Added Reservation Content Editor in Editor. |
|
| 32 |
+2. Reservation Content Type Setting Page. |
|
| 33 |
+ |
|
| 34 |
+== Frequently Asked Questions == |
|
| 35 |
+ |
|
| 36 |
+ |
|
| 37 |
+== Changelog == |
|
| 38 |
+ |
|
| 39 |
+= 0.1.0 = |
|
| 40 |
+* 2014-04-18 First release |
|
| 0 | 41 |
\ No newline at end of file |
| ... | ... |
@@ -2,7 +2,7 @@ |
| 2 | 2 |
/* |
| 3 | 3 |
* Plugin Name: Rucy |
| 4 | 4 |
* Plugin URI: https://github.com/gips/rucy |
| 5 |
- * Description: update published content. |
|
| 5 |
+ * Description: Reservation Update (Published) Content. |
|
| 6 | 6 |
* Version: 0.1.0 |
| 7 | 7 |
* Author: Nita |
| 8 | 8 |
* License: GPLv2 or later |
| ... | ... |
@@ -354,6 +354,12 @@ function addRcSetting() |
| 354 | 354 |
<input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
|
| 355 | 355 |
</p> |
| 356 | 356 |
</form> |
| 357 |
+ <h3><?php _e("Contact",RC_TXT_DOMAIN) ?></h3>
|
|
| 358 |
+ <p> |
|
| 359 |
+ <?php _e('Rucy is maintained by <a href="http://profiles.wordpress.org/gips-nita/">nita</a>.<br>', RC_TXT_DOMAIN) ?>
|
|
| 360 |
+ <?php _e('If you have found a bug or would like to make a suggestion or contribution why not join the <a href="http://wordpress.org/extend/themes/contact/">theme-reviewers mailing list</a><br />',RC_TXT_DOMAIN);?>
|
|
| 361 |
+ </p> |
|
| 362 |
+ <?php // echo pp ?> |
|
| 357 | 363 |
</div> |
| 358 | 364 |
<?php |
| 359 | 365 |
} |
| ... | ... |
@@ -400,3 +406,10 @@ function goodbyeRucy() |
| 400 | 400 |
} |
| 401 | 401 |
} |
| 402 | 402 |
} |
| 403 |
+ |
|
| 404 |
+// link to setting |
|
| 405 |
+add_filter('plugin_action_links_' . plugin_basename(__FILE__), 'helloRucy');
|
|
| 406 |
+function helloRucy($links){
|
|
| 407 |
+ $links[] = '<a href="' . get_admin_url(null, 'options-general.php?page=rucy') . '">' . __('Settings') . '</a>';
|
|
| 408 |
+ return $links; |
|
| 409 |
+} |
|
| 403 | 410 |
\ No newline at end of file |