在wordpress小部件中获取自定义文章类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在wordpress小部件中获取自定义文章类型相关的知识,希望对你有一定的参考价值。

this creates a function inside a widget object to create a dropdown menu with all the custom post types created in wordpress functions.
  1. function select_custom_posts($selected){
  2.  
  3. $out.='<select name="'.$this->get_field_name('ctype').'" >';
  4. $out.='<option value="">Seleccione un tipo</option>';
  5.  
  6. $args=array(
  7. '_builtin' => false
  8. );
  9.  
  10. $post_types=get_post_types($args,'names');
  11. foreach ($post_types as $post_type ) {
  12. $selec=($selected==$post_type)?'selected':'';
  13. $out.= '<option value="'.$post_type.'" '.$selec.'>'. $post_type. '</option>';
  14. }
  15.  
  16. $out.='</select>';
  17. echo $out;
  18.  
  19. }

以上是关于在wordpress小部件中获取自定义文章类型的主要内容,如果未能解决你的问题,请参考以下文章

如何在 WordPress 中实现自定义标头的引导小部件代码?

小部件标题未显示在我的自定义 WordPress 主题中

WordPress小部件中的重复表单字段?

如何在 WordPress 中创建自定义可拖动小部件

自定义 wordpress 小部件的设置未显示

带有媒体上传按钮的自定义Wordpress窗口小部件,在每个窗口小部件上插入相同的图像