PluginProbe
BetterDocs – AI Documentation, Knowledge Base, MCP Server, Docs, Wikis, FAQ & Chatbot / 4.8.2
BetterDocs – AI Documentation, Knowledge Base, MCP Server, Docs, Wikis, FAQ & Chatbot v4.8.2
4.9.1 4.9.0 4.8.2 4.8.1 4.8.0 4.7.0 4.6.2 4.6.1 4.6.0 4.5.6 4.5.5 4.5.4 4.5.3 4.5.2 4.5.1 4.5.0 4.4.1 4.4.0 3.3.4 3.4.0 3.4.1 3.4.2 3.5.0 3.5.1 3.5.2 All 199 releases
betterdocs / views / admin / email / analytics / parts / single-docs.php

single-docs.php in BetterDocs – AI Documentation, Knowledge Base, MCP Server, Docs, Wikis, FAQ & Chatbot 4.8.2, at views/admin/email/analytics/parts/single-docs.php

28 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) {
4 exit;
5 }
6 /**
7 * @var object $docs
8 */
9 ?>
10 <tr style="background: #fff;">
11 <td style="text-align: left; font-size: 14px; color:#1d1d1f; border-width: 1px; border-style: solid; border: none; padding: 8px 15px;">
12 <a style="text-decoration:none;color:#222;" href="<?php echo esc_attr( esc_url( get_permalink( $docs->ID ) ) ); ?>">
13 <?php echo esc_html( $docs->title ); ?>
14 </a>
15 </td>
16 <td style="text-align: center; font-size: 14px; color:#1d1d1f; border-width: 1px; border-style: solid; border: none; padding: 8px 15px;">
17 <?php echo esc_html( $docs->total_views ); ?>
18 </td>
19 <td style="text-align: center; font-size: 14px; color:#1d1d1f; border-width: 1px; border-style: solid; border: none; padding: 8px 15px;">
20 <?php echo esc_html( $docs->total_unique_visit ); ?>
21 </td>
22 <?php
23 if ( $total_reactions > 0 ) {
24 echo '<td style="text-align: center; font-size: 14px; color:#1d1d1f; border-width: 1px; border-style: solid; border: none; padding: 8px 15px;">' . esc_html( $docs->total_reactions ) . '</td>';
25 }
26 ?>
27 </tr>
28