在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.
function select_custom_posts($selected){ $out.='<select name="'.$this->get_field_name('ctype').'" >'; $out.='<option value="">Seleccione un tipo</option>'; '_builtin' => false ); $post_types=get_post_types($args,'names'); foreach ($post_types as $post_type ) { $selec=($selected==$post_type)?'selected':''; $out.= '<option value="'.$post_type.'" '.$selec.'>'. $post_type. '</option>'; } $out.='</select>'; echo $out; }
以上是关于在wordpress小部件中获取自定义文章类型的主要内容,如果未能解决你的问题,请参考以下文章