- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
50 lines
1.3 KiB
PHP
Executable File
50 lines
1.3 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Ovidiu
|
|
* Date: 12/11/2017
|
|
* Time: 9:25 AM
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Silence is golden
|
|
}
|
|
?>
|
|
<div class="tvd-row tvd-tooltipped" data-tooltip="<?php echo __( 'Manually stopped on', 'thrive-ab-page-testing' ); ?> <#= item.get('stopped_date') #>" data-position="top">
|
|
<div class="tvd-col tvd-s2 tab-headline">
|
|
<span class="tab-truncate"><#= item.get('title') #></span>
|
|
<span class="tab-edit-controls">
|
|
<a href="<#= item.get('preview_link') #>" target="_blank">
|
|
<?php echo tcb_icon( 'external-link', true, 'sidebar', 'thrive-ab-dashboard-icons' ); ?>
|
|
</a>
|
|
</span>
|
|
</div>
|
|
<div class="tvd-col tvd-s2">
|
|
<#= item.get('traffic') #>%
|
|
</div>
|
|
<div class="tvd-col tvd-s1">
|
|
<#= item.get('impressions') #>
|
|
</div>
|
|
<div class="tvd-col tvd-s1">
|
|
<#= item.get('unique_impressions') #>
|
|
</div>
|
|
<div class="tvd-col tvd-s1">
|
|
<#= item.get('conversions') #>
|
|
</div>
|
|
<div class="tvd-col tvd-s1">
|
|
<#= item.get('revenue') #>
|
|
</div>
|
|
<div class="tvd-col tvd-s1">
|
|
<#= item.get('revenue_visitor') #>
|
|
</div>
|
|
<div class="tvd-col tvd-s1">
|
|
<#= item.get('conversion_rate') #>%
|
|
</div>
|
|
<div class="tvd-col tvd-s1">
|
|
<#= item.get('improvement') #>%
|
|
</div>
|
|
<div class="tvd-col tvd-s1">
|
|
<#= item.get('chance_to_beat_orig') #>
|
|
</div>
|
|
</div>
|