Changeset 2477796
- Timestamp:
- 02/19/2021 03:04:19 PM (5 years ago)
- Location:
- link-to-bible/trunk
- Files:
-
- 2 edited
-
ltb.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
link-to-bible/trunk/ltb.php
r2410745 r2477796 3 3 * Plugin Name: Link To Bible 4 4 * Description: Automatically links bible references in posts to the appropriate bible verse(s) at bibleserver.com 5 * Version: 2.5. 75 * Version: 2.5.8 6 6 * Plugin URI: https://wordpress.org/extend/plugins/link-to-bible/ 7 7 * Author: Thomas Kuhlmann 8 8 * Author URI: http://www.thk-systems.de 9 9 * Min WP Version: 3.2.1 10 * Max WP Version: 5. 5.310 * Max WP Version: 5.6 11 11 * Text Domain: ltb 12 12 */ … … 72 72 $options = ltb_get_options (); 73 73 global $post; 74 if ( ! get_post_meta ( $post->ID, 'LTB_DISABLE', true ) && (! get_post_meta ( $post->ID, '_ltb_last', true ) || ltb_notnull_and_unequal ( get_post_meta ( $post->ID, '_ltb_translation', true ), ltb_get_bible_version ( $options, $post ) ))) {74 if ('attachment' !== $post->post_type && ! get_post_meta ( $post->ID, 'LTB_DISABLE', true ) && (! get_post_meta ( $post->ID, '_ltb_last', true ) || ltb_notnull_and_unequal ( get_post_meta ( $post->ID, '_ltb_translation', true ), ltb_get_bible_version ( $options, $post ) ))) { 75 75 wp_insert_post ( $post ); // Do the filtering by saving the post to avoid side-effects with other filtering plugins 76 76 return ltb_add_links ( $content, $post, $options, true ); // Also use the filter here because of some filters of other plugins -
link-to-bible/trunk/readme.txt
r2413378 r2477796 3 3 Tags: bible, bible verse, bible reference, bibleserver.com, bibelvers, bibel, bibelstelle 4 4 Requires at least: 3.2.1 5 Tested up to: 5. 5.36 Stable tag: 2.5. 75 Tested up to: 5.6 6 Stable tag: 2.5.8 7 7 License: GPLv3 or later 8 8 License URI: https://www.gnu.org/copyleft/gpl.html … … 66 66 == Changelog == 67 67 68 = 2.5.8 = 69 70 - Fixed problem with Yoast SEO on uploading media 71 (Thanks to Timotheus I., providing the patch.) 72 68 73 = 2.5.7 = 69 74
Note: See TracChangeset
for help on using the changeset viewer.