Changeset 2428165
- Timestamp:
- 11/29/2020 04:32:57 PM (5 years ago)
- Location:
- custom-field-list-widget/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
widget_custom_field_list.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-field-list-widget/trunk/readme.txt
r2178828 r2428165 14 14 == Description == 15 15 16 This plugin creates sidebar widgets with lists of the values of custom fields. The listed values can be (hyper-)linked in different ways.16 This plugin creates sidebar widgets with lists of the values of [custom fields](https://wordpress.org/support/article/custom-fields/). The listed values can be (hyper-)linked in different ways. 17 17 One possibility is to create a list of all values of a custom field, which will be groupped by their post (or page) and (hyper-)linked automatically to this post (or page). 18 18 Another possibility is that you can create a list of all unique values of a custom field and specify links as you like (or not). … … 29 29 * German 30 30 * English 31 * Spanish provided by Juan Jose Bescos of [IBIDEM GROUP](https://www.ibidemgroup.com "Juan Jose Bescos of IBIDEM GROUP") 31 32 * Hindi provided by (complete only until v1.1.7) [Kakesh Kumar](http://kakesh.com "Kakesh Kumar of kakesh.com") 32 33 * Danish (frontend only) provided by [Peter Kirring](http://http://www.fotoblogger.dk/ "Peter Kirring of fotoblogger.dk/") … … 120 121 121 122 == Changelog == 123 = v1.4 = 124 * Spanish language files provided by Juan Jose Bescos of [IBIDEM GROUP](https://www.ibidemgroup.com "Juan Jose Bescos of IBIDEM GROUP") 125 * minor appearance bug fixes 122 126 123 127 = v1.3 = -
custom-field-list-widget/trunk/widget_custom_field_list.php
r2178828 r2428165 8 8 Author URI: http://undeuxoutrois.de/ 9 9 Min WP Version: 2.7 10 Max WP Version: 5. 310 Max WP Version: 5.6 11 11 License: GNU General Public License 12 12 Text Domain: custom-field-list-widget … … 18 18 19 19 Localization: 20 Spanish - Juan Jose Bescos of IBIDEM GROUP (https://www.ibidemgroup.com) 20 21 Bulgarian - Peter Toushkov 21 22 Hindi - Kakesh Kumar (http://kakesh.com/) … … 29 30 For detailed information about the usage of this plugin, please read the readme.txt. 30 31 31 Copyright 20 18Tim Berger (email : be.tim.info@web.de)32 Copyright 2020 Tim Berger (email : be.tim.info@web.de) 32 33 33 34 This program is free software; you can redistribute it and/or modify … … 2000 2001 if ( 'unsaved_changes' != document.getElementById( this_id + '_helper' ).value ) { 2001 2002 document.getElementById(this_id).title = String(document.getElementById( this_id + '_helper' ).value); 2002 var tst = '<?php echo CUSTOM_FIELD_LIST_WIDGET_URL.'/widget_custom_field_list_individual_href.php?height=400&width=750&abspath='.(rawurlencode(ABSPATH)).'&number='; ?>' + String(number) + '<?php echo '&_wpnonce='.wp_create_nonce('customfieldlist_individual_href_security'); ?>'; 2003 var scrheight = Math.round(window.innerHeight-(window.innerHeight * 0.12)); 2004 var tst = '<?php echo CUSTOM_FIELD_LIST_WIDGET_URL.'/widget_custom_field_list_individual_href.php?height=\'+scrheight+\'&width=750&abspath='.(rawurlencode(ABSPATH)).'&number='; ?>' + String(number) + '<?php echo '&_wpnonce='.wp_create_nonce('customfieldlist_individual_href_security'); ?>'; 2003 2005 } else { 2004 2006 document.getElementById(this_id).title = '<?php echo __('Unsaved changes','custom-field-list-widget'); ?>';
Note: See TracChangeset
for help on using the changeset viewer.