Questions tagged «id»

唯一标识符。




3
在循环外获取帖子作者ID
我需要将带有作者作者电子邮件(或其他用户元字段)的后编辑仪表板metabox放入。因此,当管理员查看此帖子时可以对其进行编辑。 $meta_id = get_the_author_meta( 'user_email', $user_id ); $meta_box = array( 'id' => 'my-meta-box', 'title' => 'DANE FIRMY', 'page' => 'post', 'context' => 'normal', 'priority' => 'high', 'fields' => array( array( 'name' => 'E-mail box', 'id' => 'mail', 'type' => 'text', 'std' => $meta_id ) ) ); 当$ user_id是一个整数时,此代码有效(当我手动将其放置在示例4时),但我想动态获取当前的作者ID($user_id)。 get_the_author_meta('user_mail')应该在不指定的情况下工作$user_id(codex说:)),但是代码在functions.php循环的内部和外部,因此不起作用。我从Wordpress和PHP开始,所以我不知道下一步该怎么做。 还尝试了这个: …

8
如何在循环外获取作者ID
我无法在循环之外获取帖子作者ID,以使get_the_author_meta正常工作。到目前为止,我已经尝试了不同的方法: 1。 $author_id=$post->post_author; 2。 global $post; $author_id=$post->post_author; 3。 $post_tmp = get_post($post_id); $author_id = $post_tmp->post_author; 4。 $author_id = $posts[0]->post_author; 我需要作者ID才能传递给: $address = get_the_author_meta('user_email', $author_id); 有什么建议么?
16 loop  author  id 

4
Custom Walker:如何在函数start_lvl中获取ID
我正在制作我的第一个自定义助行器,以构建手风琴菜单。首先,我使用以下示例:http : //bitacre.com/2025/custom-nav-menu-walker-for-wordpress-themes 有两个功能。首先是start_lvl,然后是start_el。 在start_el中,ID获取由$ item-> ID实现。有人知道我也可以在start_lvl中做到这一点吗?我需要给(周围的下层导航)一个ID,以便可以触发它在手风琴菜单中折叠。 我试图生成的是这样的: <a href="#collapse2">Titel 2</a> <ul id="collapse2">Lower Level Menu 2</ul> <a href="#collapse3">Titel 3</a> <ul id="collapse3">Lower Level Menu 3</ul> 我的start_lvl函数代码: // add id's and classes to ul sub-menus function start_lvl( &$output, $depth, $item ) { // depth dependent classes $indent = ( $depth > 0 …


2
如何在管理员中获取当前的编辑页面ID?
我发现的大多数解决方案都用于前端。这是用于插件的,因此所有活动都在后端。 如何获取管理员当前正在使用(编辑)的页面ID? 注意我不在循环中。我只需要获取后端当前正在查看的页面ID(而不是帖子)即可。
11 functions  admin  id 

3
如何从帖子ID获取永久链接和标题?
我存储了一个帖子ID数组,我想将这些帖子列为链接,这意味着我需要获取帖子ID-$ id的标题和永久链接。以下if条件将回显该列表,这意味着我必须以某种方式将$ id替换为永久链接和标题。目前,该代码仅列出了职位ID号。 <?php if(count($related)){ echo "<div>Read More<ul>"; foreach($related as $id){ echo "<li>$id</li>"; } echo "</ul></div>"; } ?>
11 permalinks  title  array  php  id 

2
从导航项获取页面ID
我正在尝试获取导航中的所有ID,并将其转换为字符串,以便与之一起使用,wp_query以获取仅在导航栏中列出的页面。获取ID的代码: $menu_name = 'primary'; if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $menu_name ] )) { $menu = wp_get_nav_menu_object( $locations[ $menu_name ] ); $menu_items = wp_get_nav_menu_items($menu->term_id); } foreach ( $menu_items as $menu_item ) { $numbers[] = $menu_item->ID; } $number = implode(',',$numbers); 但是它返回了错误的数字。当我转到管理区域并将鼠标悬停在页面上时,屏幕底部地址栏中显示的数字不匹配。我究竟做错了什么?
11 menus  id 

3
author.php中的回显作者ID
这可能是一个非常简单的问题。 但是,如何在author.php上回显用户的ID? 我试过了 the_author_meta('ID') 但是它似乎并不想工作。例如,我想在URL的末尾回显它。 http:///www.domain.com/author/sampleauthor-id 显然,“ id”是该特定作者的ID 有任何想法吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.