Category / Dev Note

  • css页面排版图片下出现空隙解决方法

    页面排版的时候经常会遇到li包含img时,图片文件的下边缘出现大概5个或10个像素的间隙,出现间隙大概是以下原因:图片文字等inline元素默认是和父级元素的baseline对齐的,而baseline又和父级底边有一定距离(这个距离和 font-size,font-family 相关,不一定是 5px),所以设置 vertical-align:top/bottom/text-top/text...

  • 解决wordpress空行被过滤的问题

    wordpress的初始格式由formatting文件控制,打开wp-includes/formatting.php找到$pee = str_replace( array( '<br>', '<br/>' ), '<br />', $pee ); 注释掉即可。

  • 事件委托与阻止冒泡阻止其父元素事件触发

    html:// <ul class="clearfix" data-type="cityPick"> <li class="active_sort_opts" data-id="0">全部</li> <li data-id="88"...

  • Wordpress 禁用 REST API

    方法一:完全禁用未登录用户获取api/*禁用未登录的用户*/ add_filter( 'rest_api_init', 'rest_only_for_authorized_users', 99 ); function rest_only_for_authorized_users($wp_rest_server){ if ( !is_user_logged_in() ) { ...

  • js去除html标签,用于检验删除空标签

    function strip_tags (input, allowed) { allowed = (((allowed || "") + "").toLowerCase().match(/<[a-z][a-z0-9]*>/g) || []).join(''); // making sure the allowed arg...

Show more
To the end No more pages to load
Imagineer