mirror of
https://gh.wpcy.net/https://github.com/discourse/wp-discourse.git
synced 2026-05-24 03:25:27 +08:00
10 lines
243 B
PHP
Vendored
10 lines
243 B
PHP
Vendored
<?php
|
|
/**
|
|
* The template for when Discourse comments are being loaded with ajax.
|
|
*
|
|
* @package WPDiscourse
|
|
*/
|
|
|
|
global $post;
|
|
|
|
echo '<div class="wpdc-comments-loading" id="wpdc-comments" data-post-id="' . esc_attr( $post->ID ) . '"></div>';
|