我创建了一个html文件,以便在任何设备中响应.在PC上,当我调整浏览器的大小是完全响应.但是当我在移动设备上进行测试时却不是.链接在这里. http://cutetheme.net/resp/ 谢谢
我想修改我的评论列表详细日期,在我的 WordPress 主题中显示重播按钮等,我看到了此代码并使用它,但我需要修改日期格式以及标签和标题等我使用此代码
<?php /*----------------------------------- Template for Comments ---------------------------------------*/ ?>
<div id="comments">
<?php if ( post_password_required() ) : ?>
<p class="text-error"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'cusmagazines' ); ?></p>
</div>
<?php
return;
endif;
?>
<?php if ( have_comments() ) : ?>
<h2 id="comments-title">
<?php
printf( _n( 'One Comment', '%1$s Comments', get_comments_number(), 'cusmagazines' ), number_format_i18n( get_comments_number() ) );
?>
<a class="goto goto-respond" href="#respond" title="Add Your Comment">( Add Comment )</a>
</h2>
<?php if ( …
Run Code Online (Sandbox Code Playgroud)