添加标题属性以继续阅读链接(wp)

发布于 2025-01-07 11:31:50 字数 541 浏览 0 评论 0原文

我有一个“继续阅读”功能,如下所示:

function twentyten_continue_reading_link() {
global $id;
return ' <span class="readmore"><a href="'. get_permalink($id) . '">' . __( 'Read More <span class="meta-nav">&#187;</span>', 'twentyten' ) . '</a></span>';
}

我想添加一个标题属性,我认为该属性应该如下所示,

title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"

但我不确定如何在上述函数中插入标题以使其正常工作正确。有人可以帮我纠正语法吗?

I have a 'Continue Reading' function that looks like this:

function twentyten_continue_reading_link() {
global $id;
return ' <span class="readmore"><a href="'. get_permalink($id) . '">' . __( 'Read More <span class="meta-nav">»</span>', 'twentyten' ) . '</a></span>';
}

I want to add a title attribute, which I think should look something like this

title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"

but I'm not sure exactly how to insert the title in the above function to get it to work correctly. Can somebody help me get the syntax right?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

牵你手 2025-01-14 11:31:50

http://codex.wordpress.org/Function_Reference/the_title_attribute#Example

< ;a href="" title=" '固定链接到:', 'after' => '')); ?>">

既然你想返回它,你可能需要这样的东西:

return '<a href="' . get_permalink(); . ' title="' . the_title_attribute( array('echo' => 0, 'before' => 'Permalink to: ', 'after' => '')) . the_title() . '>';

http://codex.wordpress.org/Function_Reference/the_title_attribute#Example

<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute( array('before' => 'Permalink to: ', 'after' => '')); ?>"><?php the_title(); ?></a>

Since you want to return it, you probably need something like this:

return '<a href="' . get_permalink(); . ' title="' . the_title_attribute( array('echo' => 0, 'before' => 'Permalink to: ', 'after' => '')) . the_title() . '>';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文