Changeset 2472816
- Timestamp:
- 02/11/2021 05:44:02 AM (5 years ago)
- Location:
- wp-mini-program
- Files:
-
- 6 edited
-
tags/1.3.7/include/filter.php (modified) (1 diff)
-
tags/1.3.7/readme.txt (modified) (1 diff)
-
tags/1.3.7/wp-mini-program.php (modified) (1 diff)
-
trunk/include/filter.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wp-mini-program.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-mini-program/tags/1.3.7/include/filter.php
r2470715 r2472816 101 101 } 102 102 if($qvideo || $tencent) { 103 $url = $qvideo?$qvideo[0]:$tencent?$tencent[0]:''; 103 $url = ''; 104 $video = ''; 105 if( $qvideo ) { 106 $url = $qvideo[0]; 107 } else if( $tencent ) { 108 $url = $tencent[0]; 109 } 104 110 if($url) { 105 111 $video = apply_filters( 'tencent_video', $url ); 106 } else {107 $video = '';108 112 } 109 113 if($video) { -
wp-mini-program/tags/1.3.7/readme.txt
r2470715 r2472816 4 4 Tags: rest api, api, 小程序 5 5 Requires at least: 4.9.8 6 Tested up to: 5.6 6 Tested up to: 5.6.1 7 7 Requires PHP: 5.6 8 8 Stable tag: 1.3.7 -
wp-mini-program/tags/1.3.7/wp-mini-program.php
r2470715 r2472816 8 8 Author URI: https://www.imahui.com/about.html 9 9 requires at least: 4.9.8 10 tested up to: 5.6 10 tested up to: 5.6.1 11 11 */ 12 12 -
wp-mini-program/trunk/include/filter.php
r2470715 r2472816 101 101 } 102 102 if($qvideo || $tencent) { 103 $url = $qvideo?$qvideo[0]:$tencent?$tencent[0]:''; 103 $url = ''; 104 $video = ''; 105 if( $qvideo ) { 106 $url = $qvideo[0]; 107 } else if( $tencent ) { 108 $url = $tencent[0]; 109 } 104 110 if($url) { 105 111 $video = apply_filters( 'tencent_video', $url ); 106 } else {107 $video = '';108 112 } 109 113 if($video) { -
wp-mini-program/trunk/readme.txt
r2470715 r2472816 4 4 Tags: rest api, api, 小程序 5 5 Requires at least: 4.9.8 6 Tested up to: 5.6 6 Tested up to: 5.6.1 7 7 Requires PHP: 5.6 8 8 Stable tag: 1.3.7 -
wp-mini-program/trunk/wp-mini-program.php
r2470715 r2472816 8 8 Author URI: https://www.imahui.com/about.html 9 9 requires at least: 4.9.8 10 tested up to: 5.6 10 tested up to: 5.6.1 11 11 */ 12 12
Note: See TracChangeset
for help on using the changeset viewer.