php 动态内容的有用Wordpress功能

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 动态内容的有用Wordpress功能相关的知识,希望对你有一定的参考价值。

<?php
  have_posts(); // Check if have posts or use for looping posts
  the_post(); // Function call for each post inside a loop
  the_title(); // Post Title
  the_content(); // Post Content
  get_custom_logo(); // Outputs an image element with logo coming from wordpress backend (Site Logo)
  get_template_directory_uri();// Outputs the current theme folder
  wp_nav_menu($args); // Outputs the menu from wordpress backend with an array argument (refer to wordpress docs)
  new WP_Query($args); // Query for customizing posts' output (must be assigned to a variable to be used as an object, refer to wordpress docs for arguments)
  get_bloginfo(); // Outputs sites' information (refer to wordpress docs for arguments, if no argument was given, site title will be the default output)
  get_search_query(); //Outputs search query 
  get_the_post_thumbnail_url(); // Outputs image path
  the_post_thumbnail(); // Outputs the image
  
  //Snippet for adding active class for wp_nav_menu, just insert in functions.php
  add_filter('nav_menu_css_class' , 'special_nav_class' , 10 , 2);

  function special_nav_class ($classes, $item) {
      if (in_array('current-menu-item', $classes) ){
          $classes[] = 'active ';
      }
      return $classes;
  }


?>

以上是关于php 动态内容的有用Wordpress功能的主要内容,如果未能解决你的问题,请参考以下文章

使用下拉菜单动态过滤 Wordpress 帖子(使用 php 和 ajax)

php 可用于主题和插件日常开发的有用WordPress常量列表。

PHP 在Wordpress中激活后缩略图功能,但如果没有要显示的图像则不显示任何内容

PHP 在WordPress后期编辑器中解锁更多有用的按钮

配置LAMP与WordPress

text 有用的开放图形函数,用于放置在wordpress站点的functions.php中。