Changeset 3190014
- Timestamp:
- 11/16/2024 07:08:42 AM (17 months ago)
- Location:
- tseo-portfolio/trunk
- Files:
-
- 1 added
- 4 edited
-
README.txt (modified) (2 diffs)
-
admin/img/tseo-portfolio.svg (added)
-
admin/img/tseopro.jpg (modified) (previous)
-
inc/tseoportfolio-class.php (modified) (1 diff)
-
tseoportfolio.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tseo-portfolio/trunk/README.txt
r3007770 r3190014 1 1 === TSEO Portfolio === 2 Contributors: ibermega2 Contributors: devtseo, ibermega 3 3 Donate link: https://paypal.me/ibermegainc 4 4 Tags: portfolio, website gallery, website showcase, display websites, website analytics, website marketing, SEO optimization, web development, performance analysis, website quality, PageSpeed, Pingdom, GTmetrix, Google Rich Results, WordPress portfolio 5 5 Requires at least: 5.5 6 Tested up to: 6. 4.27 Stable tag: 1.0. 16 Tested up to: 6.7 7 Stable tag: 1.0.2 8 8 Requires PHP: 7.4 9 9 Text Domain: tseoportfolio … … 71 71 6. Shortcode Metabox: Demonstrates how to use the shortcode to integrate the gallery into your pages or posts. 72 72 73 == Upgrade Notice == 73 = 1.0.2 - 16/11/2024 = 74 * Settings for WordPress version 6.7 75 76 ## Changelog 77 78 = 1.0.2 - 16/11/2024 = 79 * Settings for WordPress version 6.7 74 80 75 81 = 1.0.1 - 10/12/2023 = 76 * Settings for WordPress version 6.4.2. 77 78 == Changelog == 79 80 = 1.0.1 - 10/12/2023 = 81 * Settings for WordPress version 6.4.2. 82 * Settings for WordPress version 6.4.2 82 83 83 84 = 1.0.0 - 02/09/2023 = -
tseo-portfolio/trunk/inc/tseoportfolio-class.php
r3007755 r3190014 31 31 add_action('save_post', array($this, 'tseoportfolio_save_metabox_data')); 32 32 add_action('init', array($this, 'tseoportfolio_rewrite_rules')); 33 } 33 add_action('admin_head', [$this, 'tseoportfolio_menu_icon_css']); 34 } 35 36 public function tseoportfolio_menu_icon_css() { 37 $icon_url = plugin_dir_url(dirname(__FILE__)) . 'admin/img/tseo-portfolio.svg'; 38 echo '<style> 39 #menu-posts-tseoportfolio .wp-menu-image { 40 background: url(' . esc_url($icon_url) . ') no-repeat center center !important; 41 background-size: 23px 23px !important; 42 } 43 #menu-posts-tseoportfolio .wp-menu-image:before { 44 content: "" !important; 45 } 46 </style>'; 47 } 48 34 49 public function register_tseoportfolio_post_type() { 35 50 $args = array( 36 'label' => __(' TSEO Portfolio', 'tseoportfolio'),51 'label' => __('tSEO Portfolio', 'tseoportfolio'), 37 52 'public' => false, 38 53 'publicly_queryable' => false, 39 54 'show_ui' => true, 40 55 'supports' => array('title', 'thumbnail'), 41 'menu_icon' => 'dashicons- portfolio',56 'menu_icon' => 'dashicons-admin-generic', 42 57 'rewrite' => array('slug' => 'portfolio'), 43 58 ); -
tseo-portfolio/trunk/tseoportfolio.php
r3007770 r3190014 12 12 * Plugin URI: https://tseo.pro/portfolio/ 13 13 * Description: TSEO Portfolio allows you to display a gallery of websites that you have developed with WordpPress. Each entry displays an image, title, description and six buttons that link to the website, PageSpeed Mobile, PageSpeed Desktop, Pingdom, GTmetrix and Google Rich Results that allows each visitor to analyze the quality of each website. 14 * Version: 1.0. 114 * Version: 1.0.2 15 15 * Requires at least: 5.5 16 16 * Requires PHP: 7.4 … … 40 40 41 41 if ( ! defined( 'TSEOPORTFOLIO_VERSION' ) ) { 42 define( 'TSEOPORTFOLIO_VERSION', '1.0. 0' );42 define( 'TSEOPORTFOLIO_VERSION', '1.0.2' ); 43 43 } 44 44
Note: See TracChangeset
for help on using the changeset viewer.