Changeset 3046272
- Timestamp:
- 03/06/2024 11:26:03 AM (2 years ago)
- Location:
- pasazh/trunk
- Files:
-
- 2 edited
-
pasazh.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pasazh/trunk/pasazh.php
r3046182 r3046272 6 6 Plugin URI: https://epasazh.com 7 7 Description: با استفاده از این افزونه میتوانید فروشگاه خود را به پاساژ متصل نمایید. کافیست آن را فعال نمایید پس از آن به پنل مدیریت خودت در وب سایت پاساژ مراجعه نموده و ادامه مراحل جهت اتصال را تکمیل نمایید. 8 Version: 1.1 08 Version: 1.11 9 9 Author: aliparsa 10 10 Author URI: https://profiles.wordpress.org/aliparsa/ … … 48 48 function PASAZHAPI_info($product_id) 49 49 { 50 50 51 $logo_url = null; 51 try{ 52 $logo_url = wp_get_attachment_image_src(get_theme_mod('custom_logo'), 'full')[0]; 53 }catch (Exception $exception){ 54 55 } 52 $attachment_image_src = wp_get_attachment_image_src(get_theme_mod('custom_logo'), 'full'); 53 if(is_array($attachment_image_src)) 54 $logo_url = $attachment_image_src[0]; 55 56 56 $response = [ 57 57 'name' => get_bloginfo('name'), -
pasazh/trunk/readme.txt
r3046182 r3046272 5 5 Requires at least: 5.0.3 6 6 Tested up to: 5.9.3 7 Stable tag: 1.1 07 Stable tag: 1.11 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 23 23 == Screenshots == 24 24 == Changelog == 25 = 1.1 0=25 = 1.11 = 26 26 * First release 27 27 == Upgrade Notice ==
Note: See TracChangeset
for help on using the changeset viewer.