Plugin Directory

Changeset 2958606


Ignore:
Timestamp:
08/26/2023 12:57:31 PM (3 years ago)
Author:
markomaksym
Message:

Tested up to WP 6.3

Location:
dynamically-display-posts
Files:
73 added
6 edited

Legend:

Unmodified
Added
Removed
  • dynamically-display-posts/trunk/dynamically-display-posts.php

    r2464690 r2958606  
    22/*
    33Plugin Name: Dynamically Display Posts
    4 Plugin URI: https://github.com/Maxim-us/wp-plugin-skeleton
     4Plugin URI: https://github.com/Maxim-us/Dynamically-Display-Posts-Plugin
    55Description: This plugin allows you to display a list of posts on your website on any page.
    6 Author: Marko Maksym
    7 Version: 1.0
     6Author: Maksym Marko
     7Version: 1.1
    88Author URI: https://markomaksym.com.ua/
    99*/
     
    7575
    7676    // version
    77     define( 'MXDDP_PLUGIN_VERSION', '1.0' ); // Must be replaced before production on for example '1.0'
     77    define( 'MXDDP_PLUGIN_VERSION', '1.1' ); // Must be replaced before production on for example '1.0'
    7878
    7979}
  • dynamically-display-posts/trunk/includes/core/Model.php

    r2464690 r2958606  
    3737    * select row from the database
    3838    */
    39     public function mxddp_get_row( $table = NULL, $wher_name, $wher_value )
     39    public function mxddp_get_row( $table = NULL, $wher_name='', $wher_value='' )
    4040    {
    4141
  • dynamically-display-posts/trunk/includes/core/Route-Registrar.php

    r2464690 r2958606  
    9191    *
    9292    */
    93     public function mxddp_set_data( $controller, $action, $slug = MXDDP_MAIN_MENU_SLUG, array $menu_properties, $sub_menu_slug = false, $settings_area = false )
     93    public function mxddp_set_data( $controller='', $action='', $slug = MXDDP_MAIN_MENU_SLUG, array $menu_properties=[], $sub_menu_slug = false, $settings_area = false )
    9494    {
    9595
  • dynamically-display-posts/trunk/readme.txt

    r2465370 r2958606  
    33Tags: display posts, display CPT, pagination, load more button
    44Requires at least: 5.0
    5 Tested up to: 5.6
    6 Stable tag: 1.0
     5Tested up to: 6.3
     6Stable tag: 1.1
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7676== Changelog ==
    7777
     78= 1.1 =
     79* Tested up to WP 6.3
     80
    7881= 1.0 =
    7982* Dynamically Display Posts
Note: See TracChangeset for help on using the changeset viewer.