Calling Permalinks With PHP

时间:2011-06-28 作者:Lucas

我正在开发一个支持WordPress帖子格式的主题。因此,我使用了一个大if语句,可以在下面找到。

我想将我的帖子标题链接到帖子,同时将我的主题保持为XHTML有效

if ( has_post_format( \'video\' )) {
                echo the_title();
                echo the_excerpt();
}

EDIT: Basically, the most important thing I\'m looking for is that it calls the post name as a link which links to the actual post.

3 个回复
最合适的回答,由SO网友:Otto 整理而成

我不知道你所说的“通话图像”是什么意思,但这会将标题显示为链接。

if ( has_post_format( \'video\' )) {
   ?><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><?php 
   the_excerpt();
}

SO网友:Lau

您只需添加<a href="<?php the_permalink();?>"><?php the_title();?></a> 链接文章并将标题添加为链接的可见部分。也可以替换<?php the_title();?> 用于缩略图(具有正确的功能。)或者图像、视频、按钮等以及其他类型的php语句<?php your_function(your args);?>.

至于你的另一个问题,我认为你需要为视频添加一个类别,并为此制作一个特殊的CSS。我将留下两篇帖子,它们是西班牙语的,但它们确实很有用,而且效果很好:首先,如何添加不同的结构How to: different structure per category 然后如何设计它How to: style each category differently

希望您觉得这个回答很有帮助^^

SO网友:Laura

因此:

<?php if ( has_post_format( \'video\' )) { ?>
    <a href="<?php the_permalink();?>"><?php the_title();?></a>
    <?php the_excerpt();?>
<?php } else {;?> If you plan on adding something else. otherwise just delete this line and close with the next one only

<?php } ;?>
就这样,希望你觉得这很有帮助!!

结束

相关推荐

从插件模板文件内部调用_excerpt

我正在尝试使用插件模板文件中的\\u摘录表单,插件是wp favorite posts默认情况下,插件仅列出并显示保存的帖子标题,我已设法让它显示所有内容、税务条款、图像等,但对\\u摘录很感兴趣,添加时会发生什么<?php the_excerpt( $post_id ); ?> 代码中不断循环着最喜欢的帖子,没有摘录。Im使用global $post 这样我就可以得到所有的信息(除了摘录)<?php global $post; if (!empty(