Plugin Directory

Changeset 737537


Ignore:
Timestamp:
07/07/2013 11:41:21 PM (13 years ago)
Author:
yuka2py
Message:

tagging version 0.3.1.2

Location:
wp-over-network
Files:
4 added
2 edited
6 copied

Legend:

Unmodified
Added
Removed
  • wp-over-network/tags/0.3.1.2/readme.txt

    r737504 r737537  
    55Requires at least: 3.5
    66Tested up to: 3.5.1
    7 Stable tag: 0.3.1.1
     7Stable tag: 0.3.1.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1313
    1414
    15 == Description ==
    16 
    17 This plugin contains the function to get the post data from the network site, and widgets, and short code.
    1815
    1916
    2017
    2118
    22 == Installation ==
     19== Description ==
    2320
    24 1. Upload `wp_orver_network` to the `/wp-content/plugins/` directory
    25 2. Activate the plugin through the 'Plugins' menu in WordPress
    26 3. using in your template or shortcode or widget.
     21This plugin contains the function to get the post data from the network site, and widgets, and short code. 
    2722
     23Use the following:
    2824
    29 == Screenshots ==
    30 
    31 1. Widget setting.
    32 2. Widget on front site.
    33 
    34 
    35 
    36 == Upgrade Notice ==
    37 
    38 None currently.
    39 
    40 
    41 == Frequently Asked Questions ==
    42 
    43 None currently.
    44 
    45 
    46 == Usage ==
    4725
    4826= In template =
    4927
     28```
    5029<?php
    5130
     
    9372get_sidebar();
    9473get_footer();
     74```
     75
    9576
    9677
     
    10081Arguments, can be used the same as `wponw::render_post_archive_to_string`.
    10182
    102 * Display with default.
     83**Display with default.**
    10384
    104   [wponw_recent_post_list]
     85```[wponw_recent_post_list]```
    10586
    106 * When use your template and specified 3 post\_types
    107  
    108   [wponw_recent_post_list numberposts=8 post_type=products,promotions,information template=TemplateFileNameInYourTheme]
    109  
    110   NOTICE: TemplateFileNameInYourTheme will not set file extension.
     87**When use your template and specified 3 post\_types**
     88
     89```
     90[wponw_recent_post_list numberposts=8 post_type=products,promotions,information template=TemplateFileNameInYourTheme]
     91```
     92
     93NOTICE: TemplateFileNameInYourTheme will not set file extension.
    11194
    11295
    113 * If you want to draw your own.
    114  
    115   [wponw_recent_post_list numberposts=5 post_type=products renderer=YourRenderFunction]
     96**If you want to draw your own.**
    11697
     98```
     99[wponw_recent_post_list numberposts=5 post_type=products renderer=YourRenderFunction]
     100```
    117101
    118 * To create an archive page with a page.
    119   You create the new page, and write the below shortcode in the post content.
    120  
    121   [wponw_recent_post_list post_type=products,updates]
     102**To create an archive page with a page.**
     103
     104You create the new page, and write the below shortcode in the post content.
     105
     106```
     107[wponw_recent_post_list post_type=products,updates]
     108```
    122109
    123110
     
    126113
    127114
     115
     116== Installation ==
     117
     1181. Upload `wp_orver_network` to the `/wp-content/plugins/` directory
     1192. Activate the plugin through the 'Plugins' menu in WordPress
     1203. using in your template or shortcode or widget.
     121
     122
     123== Screenshots ==
     124
     1251. Widget setting.
     1262. Widget on front site.
     127
     128
     129
     130== Upgrade Notice ==
     131
     132None currently.
     133
     134
     135== Frequently Asked Questions ==
     136
     137None currently.
     138
     139
     140
    128141== Changelog ==
    129142
    130 = 0.3.1.0, 0.3.1.1 =
     143= 0.3.1.x =
    131144* Update document. and Fixed a mistake in the readme.
    132145
  • wp-over-network/tags/0.3.1.2/wp_over_network.php

    r737504 r737537  
    66Author: @HissyNC, @yuka2py
    77Author URI: https://github.com/yuka2py/wp_over_network
    8 Version: 0.3.1.1
     8Version: 0.3.1.2
    99*/
    1010
  • wp-over-network/trunk/readme.txt

    r737504 r737537  
    55Requires at least: 3.5
    66Tested up to: 3.5.1
    7 Stable tag: 0.3.1.1
     7Stable tag: 0.3.1.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1313
    1414
    15 == Description ==
    16 
    17 This plugin contains the function to get the post data from the network site, and widgets, and short code.
    1815
    1916
    2017
    2118
    22 == Installation ==
     19== Description ==
    2320
    24 1. Upload `wp_orver_network` to the `/wp-content/plugins/` directory
    25 2. Activate the plugin through the 'Plugins' menu in WordPress
    26 3. using in your template or shortcode or widget.
     21This plugin contains the function to get the post data from the network site, and widgets, and short code. 
    2722
     23Use the following:
    2824
    29 == Screenshots ==
    30 
    31 1. Widget setting.
    32 2. Widget on front site.
    33 
    34 
    35 
    36 == Upgrade Notice ==
    37 
    38 None currently.
    39 
    40 
    41 == Frequently Asked Questions ==
    42 
    43 None currently.
    44 
    45 
    46 == Usage ==
    4725
    4826= In template =
    4927
     28```
    5029<?php
    5130
     
    9372get_sidebar();
    9473get_footer();
     74```
     75
    9576
    9677
     
    10081Arguments, can be used the same as `wponw::render_post_archive_to_string`.
    10182
    102 * Display with default.
     83**Display with default.**
    10384
    104   [wponw_recent_post_list]
     85```[wponw_recent_post_list]```
    10586
    106 * When use your template and specified 3 post\_types
    107  
    108   [wponw_recent_post_list numberposts=8 post_type=products,promotions,information template=TemplateFileNameInYourTheme]
    109  
    110   NOTICE: TemplateFileNameInYourTheme will not set file extension.
     87**When use your template and specified 3 post\_types**
     88
     89```
     90[wponw_recent_post_list numberposts=8 post_type=products,promotions,information template=TemplateFileNameInYourTheme]
     91```
     92
     93NOTICE: TemplateFileNameInYourTheme will not set file extension.
    11194
    11295
    113 * If you want to draw your own.
    114  
    115   [wponw_recent_post_list numberposts=5 post_type=products renderer=YourRenderFunction]
     96**If you want to draw your own.**
    11697
     98```
     99[wponw_recent_post_list numberposts=5 post_type=products renderer=YourRenderFunction]
     100```
    117101
    118 * To create an archive page with a page.
    119   You create the new page, and write the below shortcode in the post content.
    120  
    121   [wponw_recent_post_list post_type=products,updates]
     102**To create an archive page with a page.**
     103
     104You create the new page, and write the below shortcode in the post content.
     105
     106```
     107[wponw_recent_post_list post_type=products,updates]
     108```
    122109
    123110
     
    126113
    127114
     115
     116== Installation ==
     117
     1181. Upload `wp_orver_network` to the `/wp-content/plugins/` directory
     1192. Activate the plugin through the 'Plugins' menu in WordPress
     1203. using in your template or shortcode or widget.
     121
     122
     123== Screenshots ==
     124
     1251. Widget setting.
     1262. Widget on front site.
     127
     128
     129
     130== Upgrade Notice ==
     131
     132None currently.
     133
     134
     135== Frequently Asked Questions ==
     136
     137None currently.
     138
     139
     140
    128141== Changelog ==
    129142
    130 = 0.3.1.0, 0.3.1.1 =
     143= 0.3.1.x =
    131144* Update document. and Fixed a mistake in the readme.
    132145
  • wp-over-network/trunk/wp_over_network.php

    r737504 r737537  
    66Author: @HissyNC, @yuka2py
    77Author URI: https://github.com/yuka2py/wp_over_network
    8 Version: 0.3.1.1
     8Version: 0.3.1.2
    99*/
    1010
Note: See TracChangeset for help on using the changeset viewer.