WordPress各种标签调用集合
wordpress是一种使用PHP语言开发的博客平台,用户可以在支持PHP和MySQL 数据库的服务器上架设自己的网志,插件众多,易于扩充功能。安装和使用都非常方便。目前 WordPress 已经成为主流的 Blog 搭建平台。这个网站就用的是WordPress构建的。

买服务器域名的可以领取下面的券

WordPress模板基本文件style.css 样式表文件index.php 主页文件single.php 日志单页文件page.php 页面文件archvie.php 分类和日期存档页文件searchform.php 搜索表单文件search.php 搜索页面文件comments.php 留言区域文件(包括留言列表和留言框)404.php 404错误页面header.php 网页头部文件sidebar.php 网页侧边栏文件footer.php 网页底部文件

WordPress Header头部 PHP代码
注: 也就是位于和之间的PHP代码

<?php bloginfo(‘name’); ?> 网站标题
<?php wp_title(); ?> 日志或页面标题<?php bloginfo(‘stylesheet_url’); ?> WordPress主题样式表文件style.css的相对地址<?php bloginfo(‘pingback_url’); ?> WordPress博客的Pingback地址<?php bloginfo(‘template_url’); ?> WordPress主题文件的相对地址<?php bloginfo(‘version’); ?> 博客的Wordpress版本<?php bloginfo(‘atom_url’); ?> WordPress博客的Atom地址<?php bloginfo(‘rss2_url’); ?> WordPress博客的RSS2地址<?php bloginfo(‘url’); ?> WordPress博客的绝对地址<?php bloginfo(‘name’); ?> WordPress博客的名称<?php bloginfo(‘html_type’); ?> 网站的HTML版本<?php bloginfo(‘charset’); ?> 网站的字符编码格式WordPress 主体模板 PHP代码
<?php the_content(); ?> 日志内容
<?php if(have_posts()) : ?> 确认是否有日志<?php while(have_posts()) : the_post(); ?> 如果有,则显示全部日志<?php endwhile; ?> 结束PHP函数”while”<?php endif; ?> 结束PHP函数”if”<?php get_header(); ?> header.php文件的内容<?php get_sidebar(); ?> sidebar.php文件的内容<?php get_footer(); ?> footer.php文件的内容<?php the_time(‘m-d-y’) ?> 显示格式为”02-19-08″的日期<?php comments_popup_link(); ?> 显示一篇日志的留言链接<?php the_title(); ?> 显示一篇日志或页面的标题<?php the_permalink() ?> 显示一篇日志或页面的永久链接/URL地址<?php the_category(‘, ‘) ?> 显示一篇日志或页面的所属分类<?php the_author(); ?> 显示一篇日志或页面的作者<?php the_ID(); ?> 显示一篇日志或页面的ID<?php edit_post_link(); ?> 显示一篇日志或页面的编辑链接<?php get_links_list(); ?> 显示Blogroll中的链接<?php comments_template(); ?> comments.php文件的内容<?php wp_list_pages(); ?> 显示一份博客的页面列表<?php wp_list_cats(); ?> 显示一份博客的分类列表

分类目录函数wp_list_cats() 或 分类列表函数wp_list_categories()用法举例

1、按照字母排序,并只显示 ID 为16、3、9和5的指定分类:

  • <?php wp_list_categories(‘orderby=name&include=3,5,9,16‘); ?>

2、按照字母排序,显示每个分类的日志数,但不显示 ID 为10的分类

  <ul><?phpwp_list_categories(‘orderby=name&show_count=1&exclude=10‘); ?></ul>

3、显示或隐藏列表头,在分类函数 wp_list_categories 中,title_li 这个参数用于设置或者隐藏分类列表的头或者标题。它的默认值是:‘(__(’Categories’)’ ,这也就是为什么我们在不另设置分类列表标题的时候,它会显示“Categories”的原因。如果你在这里不设置任何参数,那么它将什么都不会显示。下 面的例子是排除 ID 为4和7并且隐藏列表头的分类列表:

<ul>
<?php
wp_list_categories(‘exclude=4,7&title_li=‘); ?>
</ul>

接下来的例子是仅仅只显示 ID为5、9和23,并且列表头显示为“诗歌”的分类列表:

<ul>
<?php
wp_list_categories(‘include=5,9,23&title_li=<h2>‘ . __(‘诗歌‘) . ‘</h2>‘ ); ?>
</ul>

4、仅显示某个分类下的子分类,下面的示例代码生成了 ID 为8的父分类下的子分类根据其 ID 进行排序的链接列表(读起来真绕口 -__-|||),它会显示每个分类下的文章数,并且隐藏链接的 title 标签中的分类描述,注意:如果父分类下没有任何文章,那么父分类将不会显示

<ul>
<?php wp_list_categories(‘orderby=id&show_count=1
&use_desc_for_title=0&child_of=8‘); ?>
</ul>

这个函数里设置的参数比较多,这里我稍作说明:我们可以看到不同参数之间使用了“&”这个“与符号”来进行区分连接,orderby=id 按照 ID 排序,show_count=1 显示分类下的文章数,use_desc_for_title=0 隐藏分类描述,child_of=8 指定 ID 为8的子分类。
5、显示带有 RSS Feed 链接的分类列表,下面代码根据分类名对分类列表排序,并显示每个分类下的文章数和 RSS 的 Feed 链接。

<ul>
<?php
wp_list_categories(‘orderby=name&show_count=1&feed=RSS‘); ?>
</ul>

还可以使用 RSS 图标代替 RSS 链接

<ul>
<?php
wp_list_categories(‘orderby=name&show_count=1
&feed_image=/images/rss.gif‘); ?>
</ul>

6、标记和样式化分类列表,从上面的例子中可以看到,我们将分类列表函数: wp_list_categories() 套用在 ul 和 li 标签里,除此外我们还可以对其进行其它的样式化,个人认为这些工作直接在 CSS 里设置即可,原文档中的方法实际作用并不是很大,这里我就不多做介绍,有兴趣的朋友可以 参考这里
7、style
(字符串)分类列表显示的样式。将分类列表的方式显示(使用
标签分隔列表项)。默认设置为列表(无序列表)。有效值:
list – 默认
none
例子:

<ul>
<?php
wp_list_categories(‘orderby=name&style=none‘); ?>
</ul><?php next_post_link(‘ %link ‘) ?> 下一篇日志的URL地址<?php previous_post_link(‘%link’) ?> 上一篇日志的URL地址<?php get_calendar(); ?> 调用日历<?php wp_get_archives() ?> 显示一份博客的日期存档列表<?php posts_nav_link(); ?> 显示较新日志链接(上一页)和较旧日志链接(下一页)<?php bloginfo(‘description’); ?> 显示博客的描述信息

其它的一些Wordpress模板代码
/%postname%/ 显示博客的自定义永久链接

<?php the_search_query(); ?> 搜索表单的值<?php _e(‘Message’); ?> 打印输出信息<?php wp_register(); ?> 显示注册链接<?php wp_loginout(); ?> 显示登入/登出链接<!–next page–> 在日志或页面中插入分页<!–more–> 截断日志<?php wp_meta(); ?> 显示管理员的相关控制信息<?php timer_stop(1); ?> 显示载入页面的时间<?php echo get_num_queries(); ?> 显示载入页面查询

wordpress调用最新文章

WordPress最新文章的调用可以使用一行很简单的模板标签wp_get_archvies来实现. 代码如下:

<?php get_archives(‘postbypost’, 10); ?> (显示10篇最新更新文章)
或者
<?php wp_get_archives(‘type=postbypost&limit=20&format=custom’); ?>

后面这个代码显示你博客中最新的20篇文章,其中format=custom这里主要用来自定义这份文章列表的显示样式。具体的参数和使用方法你可 以参考官方的使用说明- wp_get_archvies。(fromat=custom也可以不要,默认以UL列表显示文章标题。)
补充: 通过WP的query_posts()函数也能调用最新文章列表, 虽然代码会比较多一点,但可以更好的控制Loop的显示,比如你可以设置是否显示摘要。具体的使用方法也可以查看官方的说明。

wordpress调用随机文章

<?php
$rand_posts = get_posts(‘numberposts=10&orderby=rand’);foreach( $rand_posts as $post ) :?><!–下面是你想自定义的Loop–>
  • <?php endforeach; ?>

    wordpress调用最新留言

    下面是我之前在一个Wordpress主题中代到的最新留言代码,具体也记不得是哪个主题了。该代码直接调用数据库显示一份最新留言。其中 LIMIT 10限制留言显示数量。绿色部份则是每条留言的输出样式。

    <?php
    global $wpdb;$sql = “SELECT DISTINCT ID, post_title, post_password, comment_ID,comment_post_ID, comment_author, comment_date_gmt, comment_approved,comment_type,comment_author_url,SUBSTRING(comment_content,1,30) AS com_excerptFROM $wpdb->commentsLEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID =$wpdb->posts.ID)WHERE comment_approved = ’1′ AND comment_type = ” ANDpost_password = ”ORDER BY comment_date_gmt DESCLIMIT 10″;$comments = $wpdb->get_results($sql);$output = $pre_HTML; foreach ($comments as $comment) {$output .= “n<li>”.strip_tags($comment->comment_author).”:” . ” <a href=”” . get_permalink($comment->ID) .“#comment-” . $comment->comment_ID . “” title=”on ” .$comment->post_title . “”>” . strip_tags($comment->com_excerpt).”</a></li>”;} $output .= $post_HTML;echo $output;?>
    

    4.wordpress调用相关文章
    在文章页显示相关文章

    <?php
    $tags = wp_get_post_tags($post->ID);if ($tags) {$first_tag = $tags[0]->term_id;$args=array(‘tag__in’ => array($first_tag),‘post__not_in’ => array($post->ID),‘showposts’=>10,‘caller_get_posts’=>1);$my_query = new WP_Query($args);if( $my_query->have_posts() ) {while ($my_query->have_posts()) : $my_query->the_post(); ?><li><a href=”<?php the_permalink() ?>” rel=”bookmark” title=”<?php the_title_attribute(); ?>”><?php the_title();?> <?php comments_number(‘ ‘,’(1)’,’(%)’); ?></a></li><?phpendwhile;}}wp_reset_query();?>
    

    5.wordpress调用指定分类的文章
    方法1:

    <?php $posts = get_posts( “category=4&numberposts=10″ ); ?>
    <?php if( $posts ) : ?>
    <ul><?php foreach( $posts as $post ) : setup_postdata( $post ); ?>
    <li>
    <a href=”<?php the_permalink() ?>” rel=”bookmark” title=”<?php the_title(); ?>”><?php the_title(); ?></a>
    </li>
    <?php endforeach; ?>
    </ul>
    <?php endif; ?>
    

    方法2:

    <?php $posts = get_posts( "category=1&numberposts=10" ); ?>
    <?php if( $posts ) : ?><ul class="news_ful"><?php while (have_posts()) : the_post(); ?><li> <a class=" animated an4" href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><label><? echo wp_trim_words( get_the_title(),24); ?></label><span><?php  the_time('Y-m-d'); ?></span></a> </li>          <?php endwhile;wp_reset_query(); ?><?php endif; ?><?php $thiscat = get_category($cat); echo $thiscat ->name;?>调用指定分类名称标题
    <?php $cat = get_category($cid);echo $cat->slug;?>  调用指定分类别名
    <?php echo get_cat_ID( $cat_name ) ?>调用指定分类名称对应的分类ID
    <?php echo get_category_link($cid) ?>调用指定分类url链接
    //$cid为整型变量
    wp_list_categories(‘orderby=name&include=3,5,9,16‘); ?>
    

    WordPress获取指定分类下指定子分类

     <ul class="busul"><?php $categories = array(9,10,11,12,13); foreach ($categories as $cid) { ?>
    <?php query_posts("showposts=8&cat=$cid") ?><li><a class="img  animated an6" href="<?php echo get_category_link($cid) ?>" title="<?php single_cat_title() ?>"><?php single_cat_title() ?></a></li><?php } wp_reset_query(); ?></ul>
    

    或者

    $args=array(
    'orderby' => 'id',
    'order' => 'ASC',
    'child_of' => get_category_root_id($cat),
    'hide_empty' => 0,
    );
    <?php $categories=get_categories($args);
    foreach($categories as $category) {
    if(($category->term_id)==$cat){
    echo '<li class="news-xians">';
    }else{
    echo '<li>';
    }echo '<a href="'.get_category_link( $category->term_id ).'">'.$category->name.'</a>';echo '</shd>';echo "\r";}?>
    

    WordPress获取指定分类下全部子分类

    <?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=1&hide_empty=0&child_of=51'); ?>
    

    代码解释:sort_column=name为调用分类名;optioncount=1为调用分类下的文章数量;hide_empty=0为是否隐藏没有文章的分类;child_of=51为调用的父分类ID号,需要改为你自己的父分类的ID号。
    以上的代码是同时调用出子分类名和子分类下的文章数,如果只想调用子分类名,不需要显示文章数量,可以使用以下的代码:

    <?php wp_list_cats('sort_column=name&optioncount=0&hierarchical=1&hide_empty=0&child_of=51'); ?>
    

    一、指定分类下的子分类获取方法:

     <?php wp_list_cats
    ('sort_column=name&optioncount=1&hierarchical=1&hide_empty=0&child_of=10'); ?>
    

    说明:

    child_of=10中的10是指某个分类的ID号。
    sort_column:ID 或 name,预设为ID,设定依 ID 值或分类名称排序
    sort_order:asc 或 desc,预设为递增 asc,设定排序递增或递减 (&sort_column=ID&sort_order=desc )
    

    二、指定页面下的子页面获取方法:

    <?php wp_list_pages(‘hide_empty=0&child_of=5&title_li=’); ?>
    

    说明:
    child_of=5中的5是指某个页面的ID号。
    6.wordpress去评论者链接的评论输出

    <?php
    global $wpdb;$sql = “SELECT DISTINCT ID, post_title, post_password, comment_ID,comment_post_ID, comment_author, comment_date_gmt, comment_approved,comment_type,comment_author_url,SUBSTRING(comment_content,1,14) AS com_excerptFROM $wpdb->commentsLEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID =$wpdb->posts.ID)WHERE comment_approved = ’1′ AND comment_type = ” ANDpost_password = ”ORDER BY comment_date_gmt DESCLIMIT 10″;$comments = $wpdb->get_results($sql);$output = $pre_HTML;foreach ($comments as $comment) {$output .= “ <li>”.strip_tags($comment->comment_author).”:” . ” <a href=”” . get_permalink($comment->ID) .“#comment-” . $comment->comment_ID . “” title=”on ” .$comment->post_title . “”>” . strip_tags($comment->com_excerpt).”</a></li>”;}$output .= $post_HTML;echo $output;?>
    

    7.wordpress调用含gravatar头像的评论输出

    <?php
    global $wpdb;$sql = “SELECT DISTINCT ID, post_title, post_password, comment_ID, comment_post_ID, comment_author, comment_date_gmt, comment_approved,comment_author_email, comment_type,comment_author_url, SUBSTRING(comment_content,1,10) AS com_excerpt FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) WHERE comment_approved = ’1′ AND comment_type = ” AND comment_author != ‘郑 永’ AND post_password = ” ORDER BY comment_date_gmt DESC LIMIT 10″;$comments = $wpdb->get_results($sql);$output = $pre_HTML;foreach ($comments as $comment){$output .= “ <li>”.get_avatar(get_comment_author_email(‘comment_author_email’), 18). ” <a href=”” . get_permalink($comment->ID) . “#comment-” . $comment->comment_ID . “” title=”” . $comment->post_title . ” 上的评论”>”. strip_tags($comment->comment_author) .”: “. strip_tags($comment->com_excerpt) .”</a></li>”;}$output .= $post_HTML;$output = convert_smilies($output);echo $output;?>
    

    上面代码把comment_author的值改成你的ID,18是头像大小,10是评论数量。
    8.wordpress调用网站统计大全
    1、日志总数:

    <?php $count_posts = wp_count_posts(); echo $published_posts = $count_posts->publish;?>
    

    2、草稿数目:

    <?php $count_posts = wp_count_posts(); echo $draft_posts = $count_posts->draft; ?>
    

    3、评论总数:

    <?php echo $wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->comments”);?>
    

    4、成立时间:

    <?php echo floor((time()-strtotime(“2008-8-18″))/86400); ?>
    

    5、标签总数:

    <?php echo $count_tags = wp_count_terms(‘post_tag’); ?>
    

    6、页面总数:

    <?php $count_pages = wp_count_posts(‘page’); echo $page_posts = $count_pages->publish; ?>
    

    7、分类总数:

    <?php echo $count_categories = wp_count_terms(‘category’); ?>
    

    8、链接总数:

    <?php $link = $wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->links WHERE link_visible = ‘Y’”); echo $link; ?>
    

    9、用户总数:

    <?php $users = $wpdb->get_var(“SELECT COUNT(ID) FROM $wpdb->users”); echo $users; ?>
    

    10、最后更新:

    <?php $last = $wpdb->get_results(“SELECT MAX(post_modified) AS MAX_m FROM $wpdb->posts WHERE (post_type = ‘post’ OR post_type = ‘page’) AND (post_status = ‘publish’ OR post_status = ‘private’)”);$last = date(‘Y-n-j’, strtotime($last[0]->MAX_m));echo $last; ?>
    

    9.wordpress判断语句

    is_single()
    

    判断是否是具体文章的页面

    is_single(’2′)
    

    判断是否是具体文章(id=2)的页面

    is_single(‘Beef Stew’)
    

    判断是否是具体文章(标题判断)的页面

    is_single(‘beef-stew’)
    

    判断是否是具体文章(slug判断)的页面

    comments_open()
    

    是否留言开启

    pings_open()
    

    是否开启ping

    is_page()
    

    是否是页面

    is_page(’42′)
    

    id判断,即是否是id为42的页面

    is_page(‘About Me’)
    

    判断标题

    is_page(‘about-me’)
    

    slug判断

    is_category()
    

    是否是分类

    is_category(’6′)
    

    id判断,即是否是id为6的分类

    is_category(‘Cheeses’)
    

    分类title判断

    is_category(‘cheeses’)
    

    分类 slug判断

    in_category(’5′)
    

    判断当前的文章是否属于分类5

    is_author()
    

    将所有的作者的页面显示出来

    is_author(’1337′)
    

    显示author number为1337的页面

    is_author(‘Elite Hacker’)
    

    通过昵称来显示当前作者的页面

    is_author(‘elite-hacker’)
    

    下面是通过不同的判断实现以年、月、日、时间等方式来显示归档

    is_date()is_year()is_month()is_day()is_time()
    

    判断当前是否是归档页面

    is_archive()
    

    判断是否是搜索

    is_search()
    

    判断页面是否404

    is_404()
    

    判断是否翻页,比如你当前的blog是http://domain.com 显示http://domain.com?paged=2的时候,这个判断将返 回真,通过这个函数可以配合is_home来控制某些只能在首页显示的界面,
    例如:

    <?php if(is_single()):?>
    

    //这里写你想显示的内容,包括函数

    <?php endif;?>
    

    或者:

    <?php if(is_home() && !is_paged() ):?>
    

    //这里写你想显示的内容,包括函数

    <?php endif;?>
    

    10.wordpress非插件同步twitter

    <?php
    require_once (ABSPATH . WPINC . ‘/class-feed.php’);$feed = new SimplePie();$feed->set_feed_url(‘http://feeds.feedburner.com/agting′);$feed->set_file_class(‘WP_SimplePie_File’);$feed->set_cache_duration(600);$feed->init();$feed->handle_content_type();$items = $feed->get_items(0,1);foreach($items as $item) {echo ‘<a target=”_blank” rel=”external nofollow” title=”Follow Me on Twitter” href=”http://twitter.com/agting″>@用户名</a>: ‘.$item->get_description();}?>
    

    代码中的agting改成你的twitter用户名,改成你的名字。
    另一种调用方法需要你的空间是国外主机:

    <?php
    // Your twitter username.$username = “wange1228″;// Prefix – some text you want displayed before your latest tweet.// (HTML is OK, but be sure to escape quotes with backslashes: for example href=”link.html”)// Suffix – some text you want display after your latest tweet. (Same rules as the prefix.)$suffix = “”;$feed = “http://search.twitter.com/search.atom?q=from:” . $username . “&rpp=1″;function parse_feed($feed) {$stepOne = explode(“<content type=”html”>”, $feed);$stepTwo = explode(“</content>”, $stepOne[1]);$tweet = $stepTwo[0];$tweet = str_replace(“&lt;”, “<”, $tweet);$tweet = str_replace(“&gt;”, “>”, $tweet);return $tweet;}$twitterFeed = file_get_contents($feed);echo stripslashes($prefix) . parse_feed($twitterFeed) . stripslashes($suffix);?>
    

    总结一下这个方法的特点:
    1、非插件.
    2、不用验证用户名和密码,也就是说你可以指定调用任何一个人的 tweet.
    3、可以自定义 tweet 信息后显示的文字,就是 $suffix = “”; 这里.
    4、只能调用最新的一条 tweet,刚好满足我的需求。
    5、大概只有国外空间才能使用.(经我验证,确实如此)
    11.wordpress 非插件调用评论表情

    <!–smilies–>
    <?phpfunction wp_smilies() {global $wpsmiliestrans;if ( !get_option(‘use_smilies’) or (empty($wpsmiliestrans))) return;$smilies = array_unique($wpsmiliestrans);$link=”;foreach ($smilies as $key => $smile) {$file = get_bloginfo(‘wpurl’).’/wp-includes/images/smilies/’.$smile;$value = ” “.$key.” “;$img = “<img src=”{$file}” alt=”{$smile}” />”;$imglink = htmlspecialchars($img);$link .= “<a href=”#commentform” title=”{$smile}” onclick=”document.getElementByIdx_x(‘comment’).value += ‘{$value}’”>{$img}</a>&nbsp;”;}echo ‘<div class=”wp_smilies”>’.$link.’</div>’;}?><?php wp_smilies();?>
    

    将以上代码复制到 comments.php 中合适的位置。

WordPress使用到的标签大全(完整版)相关推荐

  1. 常用经典SQL语句大全完整版--详解+实例 (存)

    常用经典SQL语句大全完整版--详解+实例 转 傻豆儿的博客 http://blog.sina.com.cn/shadou2012  http://blog.sina.com.cn/s/blog_84 ...

  2. Linux dn命令大全,linux命令大全完整版.doc

    Linux命令大全完整版 目 录 TOC \h \z \t "001,1,002,2" 目 录 I 1. linux系统管理命令 1 adduser 1 chfn(change?f ...

  3. Linux 系统命令及其使用详解大全 (完整版 )

    cat cd chmod chown cp cut 名称: cat 使用权限:所有使用者 使用方式: cat [-AbeEnstTuv] [--help] [--version] fileName 说 ...

  4. HTML常用的五种标签,完整版开放下载

    前言 一眨眼又到年底了,每到这个时候,我们都会慢慢反思,这一年都做了什么?有什么进步?年初的计划都实现了吗?明年年初有跳槽的底气了吗? 况且2020年我们经历了新冠疫情的洗礼,很多程序员都经历了失业, ...

  5. mysql经典sql语句大全_常用经典SQL语句大全完整版--详解+实例 (存)

    下列语句部分是Mssql语句,不可以在access中使用. SQL分类: DDL-数据定义语言(CREATE,ALTER,DROP,DECLARE) DML-数据操纵语言(SELECT,DELETE, ...

  6. 全国计算机一级知识题及答案解析,全国计算机等级考试一级试题库大全完整版附参考答案...

    21.Windows 操作系统是一个( ).A A.单用户多任务操作系统 B.单用户单任务操作系统 C.多用户单任务操作系统 D.多用户多任务操作系统 22.设Windows桌面上已经有某应用程序的图 ...

  7. 计算机考试题库电子版,全国计算机等级考试一级试题库大全完整版附参考答案...

    A.用鼠标左键单击软键盘上的Esc键 B.用鼠标右键单击软键盘上的Esc键 C.用鼠标右键单击中文输入法状态窗口中的"开启/关闭软键盘"按钮 D.用鼠标左键单击中文输入法状态窗口中 ...

  8. CAD快捷键大全完整版分享

    AutoCAD快捷键中可用的缩写命令: 切换常规功能:Ctrl+G切换网格.Ctrl+E循环等轴测平面.Ctrl+F切换执行对象捕捉.Ctrl+H切换拾取样式.Ctrl+Shift+H切换隐藏托盘.C ...

  9. mysql host 为%,mysql清理host为%的用户Mysql命令大全(完整版)

    一.连接数据库 格式:mysql -h主机地址 -u用户名 -p用户密码 1.1.连接到本机上的MYSQL.首先打开DOS窗口,然后进入目录mysqlbin,再键入命令mysql -u root -p ...

最新文章

  1. 3D机器人视觉在仓储物流和工业自动化领域的应用 | AI ProCon 2019
  2. php开发的程序怎么用加密狗加密,C# 简单的程序绑定、加密(类似加密狗)
  3. C语言对stm32f103程序,STM32F103WIFI程序C语言
  4. 苹果修复 Gatekeeper 绕过漏洞
  5. 关于打开sdk下载不了的最优秀解决方式
  6. Java包装类介绍与类型之间相互转换
  7. 7本软书,助你打破职场天花板
  8. 仿真BPSK调制在AWGN信道下分别使用卷积码和未使用卷积码的性能对比,其中,卷积码的约束长度为7,生成多项式为[171,133],码率为1/2,译码分别采用硬判决译码和软判决译码
  9. Cortex-M核心寄存器
  10. 【板栗糖GIS】联想win11如何解决浏览器edge默认页面无法修改的问题
  11. OSI七层与TCP/IP五层网络架构详解
  12. 双机热备——上下层交换机负载分担
  13. jquery ajax json文件,jQuery ajax读取本地json文件
  14. 最新企业管理软件发展趋势分析
  15. VC6 限定鼠标移动范围
  16. 新手真无线蓝牙耳机怎么选?大神推荐高颜值时尚主流蓝牙耳机推荐
  17. ModbusPoll和ModbusSlave使用(搭配VSPD,串口接收发数据)
  18. 从今日头条抄袭到京东水逆,为何互联网公司人设会接连崩塌?
  19. oracle 控制文件丢失或损坏的恢复
  20. 汽车软件的SOA理解

热门文章

  1. php 三元运算判断,PHP 条件判断语句和三元运算符
  2. elementUI表格table的列内置样式修改方法/对比template,列属性class-name,table属性cell-class-name
  3. RAM内存释放工具:MemoryTamer for Mac
  4. JAVA特殊容器JTablePane
  5. 商城购物后台管理项目
  6. Codeforces Round #492 D. Suit and Tie
  7. matlab打靶法,打靶法(含Matlab程序).doc
  8. JVM 虚拟机原理、Java 代码优化、秒杀系统
  9. Linux 中指定使用的GPU
  10. [Matlab科学绘图] 由欧拉角绘制极图和反极图