摘要:
in_array — 该函数检查某个字符串是否存在于数组中 bool in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] ) Searches haystack for needle using loose comparison unless strict is set. 下面分享一个使用in_array的例子... 阅读全文
摘要:
本文介绍怎样统计文章的阅读次数。先贴代码:function getPostViews($postID){ $count_key = 'post_views_count'; $count = get_post_meta($postID, $count_key, true); if($count==''){ delete_post_meta($postID, $coun... 阅读全文
摘要:
我们知道,wordpress默认只支持用户名登录。本文将分享怎样让wordpress既支持用户名登录,同时支持email登录。只需要在您的模板目录下的functions.php中添加以下代码:function login_with_email_address($username) { $user = get_user_by_email($username); if(!empty($user->us... 阅读全文
摘要:
在web开发中,很多时候我们需要探测用户是否按下了键盘上的某个按键。比如说,使用百度搜索时,我们可以在输入关键词后回车即可搜索出结果。那么如何用jquery实现探测用户按下了回车键呢?以下是实现代码,将以下代码保存为test.html 运行即可体验。 输入文本,按回车键 阅读全文