13 lines
819 B
PHP
13 lines
819 B
PHP
<?php
|
|
if ( function_exists('tainacan_the_item_gallery') ) { //if (version_compare(TAINACAN_VERSION, '0.19RC') >= 0) {
|
|
tainacan_blocksy_get_template_part( 'template-parts/tainacan-item-single-document_new' );
|
|
} else if ( function_exists('tainacan_get_the_media_component') ) { //if (version_compare(TAINACAN_VERSION, '0.18RC') >= 0) {
|
|
tainacan_blocksy_get_template_part( 'template-parts/tainacan-item-single-document_old' );
|
|
} else {
|
|
?>
|
|
<div style="text-aling: center; max-width: 600px; margin: 2em auto; width: 100%; font-style: italic;">
|
|
<p><?php __('It seems that you are using a legacy vesion of the Tainacan plugin. Please update in order to use the latest features for displaying item media.', 'tainacan-blocksy') ?></p>
|
|
</div>
|
|
<?php
|
|
}
|
|
?>
|