Changeset 2188804
- Timestamp:
- 11/09/2019 10:11:06 AM (6 years ago)
- Location:
- siteorigin-panels
- Files:
-
- 8 added
- 8 deleted
- 5 edited
- 12 copied
-
tags/2.10.13 (copied) (copied from siteorigin-panels/trunk)
-
tags/2.10.13/compat/widget-options.php (copied) (copied from siteorigin-panels/trunk/compat/widget-options.php)
-
tags/2.10.13/css/admin.css (copied) (copied from siteorigin-panels/trunk/css/admin.css)
-
tags/2.10.13/css/admin.min.css (copied) (copied from siteorigin-panels/trunk/css/admin.min.css)
-
tags/2.10.13/inc/admin.php (copied) (copied from siteorigin-panels/trunk/inc/admin.php)
-
tags/2.10.13/inc/renderer.php (copied) (copied from siteorigin-panels/trunk/inc/renderer.php)
-
tags/2.10.13/inc/styles.php (copied) (copied from siteorigin-panels/trunk/inc/styles.php)
-
tags/2.10.13/inc/widgets/post-loop-helper.php (copied) (copied from siteorigin-panels/trunk/inc/widgets/post-loop-helper.php) (1 diff)
-
tags/2.10.13/inc/widgets/post-loop.php (copied) (copied from siteorigin-panels/trunk/inc/widgets/post-loop.php) (5 diffs)
-
tags/2.10.13/js/siteorigin-panels-21013.js (added)
-
tags/2.10.13/js/siteorigin-panels-21013.min.js (added)
-
tags/2.10.13/js/siteorigin-panels-2108.js (deleted)
-
tags/2.10.13/js/siteorigin-panels-2108.min.js (deleted)
-
tags/2.10.13/js/styling-21013.js (added)
-
tags/2.10.13/js/styling-21013.min.js (added)
-
tags/2.10.13/js/styling-2108.js (deleted)
-
tags/2.10.13/js/styling-2108.min.js (deleted)
-
tags/2.10.13/lang/siteorigin-panels.pot (copied) (copied from siteorigin-panels/trunk/lang/siteorigin-panels.pot) (5 diffs)
-
tags/2.10.13/readme.txt (copied) (copied from siteorigin-panels/trunk/readme.txt) (2 diffs)
-
tags/2.10.13/siteorigin-panels.php (copied) (copied from siteorigin-panels/trunk/siteorigin-panels.php) (2 diffs)
-
trunk/inc/widgets/post-loop-helper.php (modified) (1 diff)
-
trunk/inc/widgets/post-loop.php (modified) (5 diffs)
-
trunk/js/siteorigin-panels-21012.js (deleted)
-
trunk/js/siteorigin-panels-21012.min.js (deleted)
-
trunk/js/siteorigin-panels-21013.js (added)
-
trunk/js/siteorigin-panels-21013.min.js (added)
-
trunk/js/styling-21012.js (deleted)
-
trunk/js/styling-21012.min.js (deleted)
-
trunk/js/styling-21013.js (added)
-
trunk/js/styling-21013.min.js (added)
-
trunk/lang/siteorigin-panels.pot (modified) (5 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/siteorigin-panels.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
siteorigin-panels/tags/2.10.13/inc/widgets/post-loop-helper.php
r2185928 r2188804 19 19 foreach( $templates as $template ) { 20 20 // Is this template being added by a plugin? 21 $filename = locate_template( $template ); 22 if ( ! $filename ) { 23 // Template added by a plugin 24 $filename = WP_PLUGIN_DIR ."/$template"; 25 } 21 $filename = SiteOrigin_Panels_Widgets_PostLoop::locate_template( $template ); 26 22 $headers = get_file_data( $filename, array( 27 23 'loop_name' => 'Loop Name', -
siteorigin-panels/tags/2.10.13/inc/widgets/post-loop.php
r2185928 r2188804 189 189 self::$current_loop_template = $instance['template']; 190 190 191 // Is $file being added by a plugin? 192 if ( strpos( $instance['template'], '/content' ) !== false ) { 191 if ( preg_match( '/\/content*/', '/' . $instance['template'] ) ) { 193 192 while( have_posts() ) { 194 193 the_post(); 195 $this->locate_template($instance['template'], true, false);194 self::locate_template($instance['template'], true, false); 196 195 } 197 196 } else { 198 $this->locate_template($instance['template'], true, false);197 self::locate_template($instance['template'], true, false); 199 198 } 200 199 … … 258 257 <option value="<?php echo esc_attr($template) ?>" <?php selected($instance['template'], $template) ?>> 259 258 <?php 260 $headers = get_file_data( $this->locate_template($template), array(259 $headers = get_file_data( self::locate_template($template), array( 261 260 'loop_name' => 'Loop Name', 262 261 ) ); … … 372 371 $template_dirs = apply_filters( 'siteorigin_panels_postloop_template_directory', $template_dirs ); 373 372 $template_dirs = array_unique( $template_dirs ); 373 374 374 foreach( $template_dirs as $dir ){ 375 375 foreach( $template_files as $template_file ) { … … 403 403 404 404 // And it exists 405 ( locate_template( $filename ) != '' || file_exists( WP_PLUGIN_DIR . '/' . $filename ) )405 self::locate_template( $filename ) != '' 406 406 ); 407 407 } … … 416 416 * @return string The template location. 417 417 */ 418 public function locate_template( $template_names, $load = false, $require_once = true )418 public static function locate_template( $template_names, $load = false, $require_once = true ) 419 419 { 420 420 $located = ''; -
siteorigin-panels/tags/2.10.13/lang/siteorigin-panels.pot
r2185928 r2188804 1006 1006 msgstr "" 1007 1007 1008 #: inc/styles.php:246, widgets/widgets.php:635, widgets/widgets.php:757, inc/widgets/post-loop.php:3 301008 #: inc/styles.php:246, widgets/widgets.php:635, widgets/widgets.php:757, inc/widgets/post-loop.php:329 1009 1009 msgid "Default" 1010 1010 msgstr "" … … 1322 1322 msgstr "" 1323 1323 1324 #: widgets/widgets.php:594, inc/widgets/post-loop.php:28 81324 #: widgets/widgets.php:594, inc/widgets/post-loop.php:287 1325 1325 msgid "Post Type" 1326 1326 msgstr "" 1327 1327 1328 #: widgets/widgets.php:601, inc/widgets/post-loop.php:29 71328 #: widgets/widgets.php:601, inc/widgets/post-loop.php:296 1329 1329 msgid "Posts Per Page" 1330 1330 msgstr "" 1331 1331 1332 #: widgets/widgets.php:606, inc/widgets/post-loop.php:30 21332 #: widgets/widgets.php:606, inc/widgets/post-loop.php:301 1333 1333 msgid "Order By" 1334 1334 msgstr "" 1335 1335 1336 #: widgets/widgets.php:608, widgets/widgets.php:783, inc/widgets/post-content.php:60, inc/widgets/post-loop.php:30 41336 #: widgets/widgets.php:608, widgets/widgets.php:783, inc/widgets/post-content.php:60, inc/widgets/post-loop.php:303 1337 1337 msgid "None" 1338 1338 msgstr "" 1339 1339 1340 #: widgets/widgets.php:609, inc/widgets/post-loop.php:30 51340 #: widgets/widgets.php:609, inc/widgets/post-loop.php:304 1341 1341 msgid "Post ID" 1342 1342 msgstr "" 1343 1343 1344 #: widgets/widgets.php:610, inc/widgets/post-loop.php:30 61344 #: widgets/widgets.php:610, inc/widgets/post-loop.php:305 1345 1345 msgid "Author" 1346 1346 msgstr "" 1347 1347 1348 #: widgets/widgets.php:611, widgets/widgets.php:612, inc/widgets/post-loop.php:30 7, inc/widgets/post-loop.php:308, widgets/widgets/testimonial/testimonial.php:151348 #: widgets/widgets.php:611, widgets/widgets.php:612, inc/widgets/post-loop.php:306, inc/widgets/post-loop.php:307, widgets/widgets/testimonial/testimonial.php:15 1349 1349 msgid "Name" 1350 1350 msgstr "" 1351 1351 1352 #: widgets/widgets.php:613, inc/widgets/post-loop.php:30 91352 #: widgets/widgets.php:613, inc/widgets/post-loop.php:308 1353 1353 msgid "Date" 1354 1354 msgstr "" 1355 1355 1356 #: widgets/widgets.php:614, inc/widgets/post-loop.php:3 101356 #: widgets/widgets.php:614, inc/widgets/post-loop.php:309 1357 1357 msgid "Modified" 1358 1358 msgstr "" 1359 1359 1360 #: widgets/widgets.php:615, inc/widgets/post-loop.php:31 11360 #: widgets/widgets.php:615, inc/widgets/post-loop.php:310 1361 1361 msgid "Parent" 1362 1362 msgstr "" 1363 1363 1364 #: widgets/widgets.php:616, inc/widgets/post-loop.php:31 21364 #: widgets/widgets.php:616, inc/widgets/post-loop.php:311 1365 1365 msgid "Random" 1366 1366 msgstr "" 1367 1367 1368 #: widgets/widgets.php:617, inc/widgets/post-loop.php:31 31368 #: widgets/widgets.php:617, inc/widgets/post-loop.php:312 1369 1369 msgid "Comment Count" 1370 1370 msgstr "" 1371 1371 1372 #: widgets/widgets.php:618, inc/widgets/post-loop.php:31 41372 #: widgets/widgets.php:618, inc/widgets/post-loop.php:313 1373 1373 msgid "Menu Order" 1374 1374 msgstr "" 1375 1375 1376 #: widgets/widgets.php:624, inc/widgets/post-loop.php:3 201376 #: widgets/widgets.php:624, inc/widgets/post-loop.php:319 1377 1377 msgid "Order" 1378 1378 msgstr "" 1379 1379 1380 #: widgets/widgets.php:626, inc/widgets/post-loop.php:32 31380 #: widgets/widgets.php:626, inc/widgets/post-loop.php:322 1381 1381 msgid "Ascending" 1382 1382 msgstr "" 1383 1383 1384 #: widgets/widgets.php:627, inc/widgets/post-loop.php:32 21384 #: widgets/widgets.php:627, inc/widgets/post-loop.php:321 1385 1385 msgid "Descending" 1386 1386 msgstr "" 1387 1387 1388 #: widgets/widgets.php:633, inc/widgets/post-loop.php:32 81388 #: widgets/widgets.php:633, inc/widgets/post-loop.php:327 1389 1389 msgid "Sticky Posts" 1390 1390 msgstr "" 1391 1391 1392 #: widgets/widgets.php:636, inc/widgets/post-loop.php:33 11392 #: widgets/widgets.php:636, inc/widgets/post-loop.php:330 1393 1393 msgid "Ignore Sticky" 1394 1394 msgstr "" 1395 1395 1396 #: widgets/widgets.php:637, inc/widgets/post-loop.php:33 21396 #: widgets/widgets.php:637, inc/widgets/post-loop.php:331 1397 1397 msgid "Exclude Sticky" 1398 1398 msgstr "" 1399 1399 1400 #: widgets/widgets.php:638, inc/widgets/post-loop.php:33 31400 #: widgets/widgets.php:638, inc/widgets/post-loop.php:332 1401 1401 msgid "Only Sticky" 1402 1402 msgstr "" … … 1406 1406 msgstr "" 1407 1407 1408 #: widgets/widgets.php:648, inc/widgets/post-loop.php:34 51408 #: widgets/widgets.php:648, inc/widgets/post-loop.php:344 1409 1409 msgid "Additional query arguments. See 1{query_posts}." 1410 1410 msgstr "" … … 1595 1595 msgstr "" 1596 1596 1597 #: inc/widgets/post-content.php:61, inc/widgets/post-loop-helper.php:4 5, inc/widgets/post-loop.php:251, widgets/widgets/call-to-action/call-to-action.php:15, widgets/widgets/list/list.php:15, widgets/widgets/price-box/price-box.php:151597 #: inc/widgets/post-content.php:61, inc/widgets/post-loop-helper.php:41, inc/widgets/post-loop.php:250, widgets/widgets/call-to-action/call-to-action.php:15, widgets/widgets/list/list.php:15, widgets/widgets/price-box/price-box.php:15 1598 1598 msgid "Title" 1599 1599 msgstr "" … … 1607 1607 msgstr "" 1608 1608 1609 #: inc/widgets/post-loop-helper.php:3 5, inc/widgets/post-loop.php:231609 #: inc/widgets/post-loop-helper.php:31, inc/widgets/post-loop.php:23 1610 1610 msgid "Post Loop" 1611 1611 msgstr "" 1612 1612 1613 #: inc/widgets/post-loop-helper.php:3 7, inc/widgets/post-loop.php:251613 #: inc/widgets/post-loop-helper.php:33, inc/widgets/post-loop.php:25 1614 1614 msgid "Displays a post loop." 1615 1615 msgstr "" 1616 1616 1617 #: inc/widgets/post-loop-helper.php:4 9, inc/widgets/post-loop.php:2551617 #: inc/widgets/post-loop-helper.php:45, inc/widgets/post-loop.php:254 1618 1618 msgid "Template" 1619 1619 msgstr "" 1620 1620 1621 #: inc/widgets/post-loop-helper.php:5 6, inc/widgets/post-loop.php:2731621 #: inc/widgets/post-loop-helper.php:52, inc/widgets/post-loop.php:272 1622 1622 msgid "If the template supports it, cut posts and display the more link." 1623 1623 msgstr "" 1624 1624 1625 #: inc/widgets/post-loop.php:22 11625 #: inc/widgets/post-loop.php:220 1626 1626 msgid "Your theme doesn't have any post loops." 1627 1627 msgstr "" 1628 1628 1629 #: inc/widgets/post-loop.php:27 11629 #: inc/widgets/post-loop.php:270 1630 1630 msgid "More Link" 1631 1631 msgstr "" 1632 1632 1633 #: inc/widgets/post-loop.php:31 51633 #: inc/widgets/post-loop.php:314 1634 1634 msgid "Post In Order" 1635 1635 msgstr "" 1636 1636 1637 #: inc/widgets/post-loop.php:33 81637 #: inc/widgets/post-loop.php:337 1638 1638 msgid "Additional " 1639 1639 msgstr "" -
siteorigin-panels/tags/2.10.13/readme.txt
r2185928 r2188804 3 3 Requires at least: 4.7 4 4 Tested up to: 5.3 5 Stable tag: 2.10.1 26 Build time: 2019-11-0 4T10:18:30+02:005 Stable tag: 2.10.13 6 Build time: 2019-11-09T12:06:24+02:00 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl.html … … 96 96 97 97 == Changelog == 98 99 = 2.10.13 - 9 November 2019 = 100 * Fixed check for content.php post loop templates 101 * Add `builderType` argument when fetching a selected prebuilt layout. 98 102 99 103 = 2.10.12 - 4 November 2019 = -
siteorigin-panels/tags/2.10.13/siteorigin-panels.php
r2185928 r2188804 4 4 Plugin URI: https://siteorigin.com/page-builder/ 5 5 Description: A drag and drop, responsive page builder that simplifies building your website. 6 Version: 2.10.1 26 Version: 2.10.13 7 7 Author: SiteOrigin 8 8 Author URI: https://siteorigin.com … … 12 12 */ 13 13 14 define( 'SITEORIGIN_PANELS_VERSION', '2.10.1 2' );14 define( 'SITEORIGIN_PANELS_VERSION', '2.10.13' ); 15 15 if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) { 16 16 define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' ); 17 17 } 18 18 define( 'SITEORIGIN_PANELS_CSS_SUFFIX', '.min' ); 19 define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-2101 2' );19 define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-21013' ); 20 20 21 21 require_once plugin_dir_path( __FILE__ ) . 'inc/functions.php'; -
siteorigin-panels/trunk/inc/widgets/post-loop-helper.php
r2185928 r2188804 19 19 foreach( $templates as $template ) { 20 20 // Is this template being added by a plugin? 21 $filename = locate_template( $template ); 22 if ( ! $filename ) { 23 // Template added by a plugin 24 $filename = WP_PLUGIN_DIR ."/$template"; 25 } 21 $filename = SiteOrigin_Panels_Widgets_PostLoop::locate_template( $template ); 26 22 $headers = get_file_data( $filename, array( 27 23 'loop_name' => 'Loop Name', -
siteorigin-panels/trunk/inc/widgets/post-loop.php
r2185928 r2188804 189 189 self::$current_loop_template = $instance['template']; 190 190 191 // Is $file being added by a plugin? 192 if ( strpos( $instance['template'], '/content' ) !== false ) { 191 if ( preg_match( '/\/content*/', '/' . $instance['template'] ) ) { 193 192 while( have_posts() ) { 194 193 the_post(); 195 $this->locate_template($instance['template'], true, false);194 self::locate_template($instance['template'], true, false); 196 195 } 197 196 } else { 198 $this->locate_template($instance['template'], true, false);197 self::locate_template($instance['template'], true, false); 199 198 } 200 199 … … 258 257 <option value="<?php echo esc_attr($template) ?>" <?php selected($instance['template'], $template) ?>> 259 258 <?php 260 $headers = get_file_data( $this->locate_template($template), array(259 $headers = get_file_data( self::locate_template($template), array( 261 260 'loop_name' => 'Loop Name', 262 261 ) ); … … 372 371 $template_dirs = apply_filters( 'siteorigin_panels_postloop_template_directory', $template_dirs ); 373 372 $template_dirs = array_unique( $template_dirs ); 373 374 374 foreach( $template_dirs as $dir ){ 375 375 foreach( $template_files as $template_file ) { … … 403 403 404 404 // And it exists 405 ( locate_template( $filename ) != '' || file_exists( WP_PLUGIN_DIR . '/' . $filename ) )405 self::locate_template( $filename ) != '' 406 406 ); 407 407 } … … 416 416 * @return string The template location. 417 417 */ 418 public function locate_template( $template_names, $load = false, $require_once = true )418 public static function locate_template( $template_names, $load = false, $require_once = true ) 419 419 { 420 420 $located = ''; -
siteorigin-panels/trunk/lang/siteorigin-panels.pot
r2185928 r2188804 1006 1006 msgstr "" 1007 1007 1008 #: inc/styles.php:246, widgets/widgets.php:635, widgets/widgets.php:757, inc/widgets/post-loop.php:3 301008 #: inc/styles.php:246, widgets/widgets.php:635, widgets/widgets.php:757, inc/widgets/post-loop.php:329 1009 1009 msgid "Default" 1010 1010 msgstr "" … … 1322 1322 msgstr "" 1323 1323 1324 #: widgets/widgets.php:594, inc/widgets/post-loop.php:28 81324 #: widgets/widgets.php:594, inc/widgets/post-loop.php:287 1325 1325 msgid "Post Type" 1326 1326 msgstr "" 1327 1327 1328 #: widgets/widgets.php:601, inc/widgets/post-loop.php:29 71328 #: widgets/widgets.php:601, inc/widgets/post-loop.php:296 1329 1329 msgid "Posts Per Page" 1330 1330 msgstr "" 1331 1331 1332 #: widgets/widgets.php:606, inc/widgets/post-loop.php:30 21332 #: widgets/widgets.php:606, inc/widgets/post-loop.php:301 1333 1333 msgid "Order By" 1334 1334 msgstr "" 1335 1335 1336 #: widgets/widgets.php:608, widgets/widgets.php:783, inc/widgets/post-content.php:60, inc/widgets/post-loop.php:30 41336 #: widgets/widgets.php:608, widgets/widgets.php:783, inc/widgets/post-content.php:60, inc/widgets/post-loop.php:303 1337 1337 msgid "None" 1338 1338 msgstr "" 1339 1339 1340 #: widgets/widgets.php:609, inc/widgets/post-loop.php:30 51340 #: widgets/widgets.php:609, inc/widgets/post-loop.php:304 1341 1341 msgid "Post ID" 1342 1342 msgstr "" 1343 1343 1344 #: widgets/widgets.php:610, inc/widgets/post-loop.php:30 61344 #: widgets/widgets.php:610, inc/widgets/post-loop.php:305 1345 1345 msgid "Author" 1346 1346 msgstr "" 1347 1347 1348 #: widgets/widgets.php:611, widgets/widgets.php:612, inc/widgets/post-loop.php:30 7, inc/widgets/post-loop.php:308, widgets/widgets/testimonial/testimonial.php:151348 #: widgets/widgets.php:611, widgets/widgets.php:612, inc/widgets/post-loop.php:306, inc/widgets/post-loop.php:307, widgets/widgets/testimonial/testimonial.php:15 1349 1349 msgid "Name" 1350 1350 msgstr "" 1351 1351 1352 #: widgets/widgets.php:613, inc/widgets/post-loop.php:30 91352 #: widgets/widgets.php:613, inc/widgets/post-loop.php:308 1353 1353 msgid "Date" 1354 1354 msgstr "" 1355 1355 1356 #: widgets/widgets.php:614, inc/widgets/post-loop.php:3 101356 #: widgets/widgets.php:614, inc/widgets/post-loop.php:309 1357 1357 msgid "Modified" 1358 1358 msgstr "" 1359 1359 1360 #: widgets/widgets.php:615, inc/widgets/post-loop.php:31 11360 #: widgets/widgets.php:615, inc/widgets/post-loop.php:310 1361 1361 msgid "Parent" 1362 1362 msgstr "" 1363 1363 1364 #: widgets/widgets.php:616, inc/widgets/post-loop.php:31 21364 #: widgets/widgets.php:616, inc/widgets/post-loop.php:311 1365 1365 msgid "Random" 1366 1366 msgstr "" 1367 1367 1368 #: widgets/widgets.php:617, inc/widgets/post-loop.php:31 31368 #: widgets/widgets.php:617, inc/widgets/post-loop.php:312 1369 1369 msgid "Comment Count" 1370 1370 msgstr "" 1371 1371 1372 #: widgets/widgets.php:618, inc/widgets/post-loop.php:31 41372 #: widgets/widgets.php:618, inc/widgets/post-loop.php:313 1373 1373 msgid "Menu Order" 1374 1374 msgstr "" 1375 1375 1376 #: widgets/widgets.php:624, inc/widgets/post-loop.php:3 201376 #: widgets/widgets.php:624, inc/widgets/post-loop.php:319 1377 1377 msgid "Order" 1378 1378 msgstr "" 1379 1379 1380 #: widgets/widgets.php:626, inc/widgets/post-loop.php:32 31380 #: widgets/widgets.php:626, inc/widgets/post-loop.php:322 1381 1381 msgid "Ascending" 1382 1382 msgstr "" 1383 1383 1384 #: widgets/widgets.php:627, inc/widgets/post-loop.php:32 21384 #: widgets/widgets.php:627, inc/widgets/post-loop.php:321 1385 1385 msgid "Descending" 1386 1386 msgstr "" 1387 1387 1388 #: widgets/widgets.php:633, inc/widgets/post-loop.php:32 81388 #: widgets/widgets.php:633, inc/widgets/post-loop.php:327 1389 1389 msgid "Sticky Posts" 1390 1390 msgstr "" 1391 1391 1392 #: widgets/widgets.php:636, inc/widgets/post-loop.php:33 11392 #: widgets/widgets.php:636, inc/widgets/post-loop.php:330 1393 1393 msgid "Ignore Sticky" 1394 1394 msgstr "" 1395 1395 1396 #: widgets/widgets.php:637, inc/widgets/post-loop.php:33 21396 #: widgets/widgets.php:637, inc/widgets/post-loop.php:331 1397 1397 msgid "Exclude Sticky" 1398 1398 msgstr "" 1399 1399 1400 #: widgets/widgets.php:638, inc/widgets/post-loop.php:33 31400 #: widgets/widgets.php:638, inc/widgets/post-loop.php:332 1401 1401 msgid "Only Sticky" 1402 1402 msgstr "" … … 1406 1406 msgstr "" 1407 1407 1408 #: widgets/widgets.php:648, inc/widgets/post-loop.php:34 51408 #: widgets/widgets.php:648, inc/widgets/post-loop.php:344 1409 1409 msgid "Additional query arguments. See 1{query_posts}." 1410 1410 msgstr "" … … 1595 1595 msgstr "" 1596 1596 1597 #: inc/widgets/post-content.php:61, inc/widgets/post-loop-helper.php:4 5, inc/widgets/post-loop.php:251, widgets/widgets/call-to-action/call-to-action.php:15, widgets/widgets/list/list.php:15, widgets/widgets/price-box/price-box.php:151597 #: inc/widgets/post-content.php:61, inc/widgets/post-loop-helper.php:41, inc/widgets/post-loop.php:250, widgets/widgets/call-to-action/call-to-action.php:15, widgets/widgets/list/list.php:15, widgets/widgets/price-box/price-box.php:15 1598 1598 msgid "Title" 1599 1599 msgstr "" … … 1607 1607 msgstr "" 1608 1608 1609 #: inc/widgets/post-loop-helper.php:3 5, inc/widgets/post-loop.php:231609 #: inc/widgets/post-loop-helper.php:31, inc/widgets/post-loop.php:23 1610 1610 msgid "Post Loop" 1611 1611 msgstr "" 1612 1612 1613 #: inc/widgets/post-loop-helper.php:3 7, inc/widgets/post-loop.php:251613 #: inc/widgets/post-loop-helper.php:33, inc/widgets/post-loop.php:25 1614 1614 msgid "Displays a post loop." 1615 1615 msgstr "" 1616 1616 1617 #: inc/widgets/post-loop-helper.php:4 9, inc/widgets/post-loop.php:2551617 #: inc/widgets/post-loop-helper.php:45, inc/widgets/post-loop.php:254 1618 1618 msgid "Template" 1619 1619 msgstr "" 1620 1620 1621 #: inc/widgets/post-loop-helper.php:5 6, inc/widgets/post-loop.php:2731621 #: inc/widgets/post-loop-helper.php:52, inc/widgets/post-loop.php:272 1622 1622 msgid "If the template supports it, cut posts and display the more link." 1623 1623 msgstr "" 1624 1624 1625 #: inc/widgets/post-loop.php:22 11625 #: inc/widgets/post-loop.php:220 1626 1626 msgid "Your theme doesn't have any post loops." 1627 1627 msgstr "" 1628 1628 1629 #: inc/widgets/post-loop.php:27 11629 #: inc/widgets/post-loop.php:270 1630 1630 msgid "More Link" 1631 1631 msgstr "" 1632 1632 1633 #: inc/widgets/post-loop.php:31 51633 #: inc/widgets/post-loop.php:314 1634 1634 msgid "Post In Order" 1635 1635 msgstr "" 1636 1636 1637 #: inc/widgets/post-loop.php:33 81637 #: inc/widgets/post-loop.php:337 1638 1638 msgid "Additional " 1639 1639 msgstr "" -
siteorigin-panels/trunk/readme.txt
r2185928 r2188804 3 3 Requires at least: 4.7 4 4 Tested up to: 5.3 5 Stable tag: 2.10.1 26 Build time: 2019-11-0 4T10:18:30+02:005 Stable tag: 2.10.13 6 Build time: 2019-11-09T12:06:24+02:00 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl.html … … 96 96 97 97 == Changelog == 98 99 = 2.10.13 - 9 November 2019 = 100 * Fixed check for content.php post loop templates 101 * Add `builderType` argument when fetching a selected prebuilt layout. 98 102 99 103 = 2.10.12 - 4 November 2019 = -
siteorigin-panels/trunk/siteorigin-panels.php
r2185928 r2188804 4 4 Plugin URI: https://siteorigin.com/page-builder/ 5 5 Description: A drag and drop, responsive page builder that simplifies building your website. 6 Version: 2.10.1 26 Version: 2.10.13 7 7 Author: SiteOrigin 8 8 Author URI: https://siteorigin.com … … 12 12 */ 13 13 14 define( 'SITEORIGIN_PANELS_VERSION', '2.10.1 2' );14 define( 'SITEORIGIN_PANELS_VERSION', '2.10.13' ); 15 15 if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) { 16 16 define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' ); 17 17 } 18 18 define( 'SITEORIGIN_PANELS_CSS_SUFFIX', '.min' ); 19 define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-2101 2' );19 define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-21013' ); 20 20 21 21 require_once plugin_dir_path( __FILE__ ) . 'inc/functions.php';
Note: See TracChangeset
for help on using the changeset viewer.