-4

我正在尝试使用 get_post_format_link 并且无法弄清楚如何使用它。我希望能够单击主页上的链接,该链接将告诉 category.php 仅在我登陆时显示视频帖子。我的functions.php中有以下代码

function get_post_format_link( $format ) {
$term = get_term_by('slug', 'post-format-' . $format, 'post_format' );
if ( ! $term || is_wp_error( $term ) )
    return false;
return get_term_link( $term );
}

我只想弄清楚如何对链接进行物理编码,例如:

<a href="post-format-video">more videos</a>

但这不起作用!非常感谢任何建议。

4

1 回答 1

1

固定链接打开时,url 格式为:

/type/{post format}/

有关更多信息,请参阅:https ://wordpress.stackexchange.com/questions/39925/does-wordpress-generate-an-automatic-page-for-post-formats

于 2013-05-26T13:18:44.807 回答