您当前的位置:首页 > TAG信息列表 > excerpt
简单的类别搜索表单返回全文-但我需要摘录
我有会员页面。我将他们的“会员类型”设置为特定类别。我现在想搜索成员。我使用这个简单的表单来做我需要的事情,只是我需要将结果显示为摘录。想法?<form method=\"get\" id=\"search form\" action=\"/\"> <div> <input type=\"text\" value=\"\" name=\"s\" id=\"s\" /> <input type=\"hidden\" value=\"22\"
Different 'read more' links
有没有一种简单的方法可以添加另一个“阅读更多”链接?我在一些帖子中使用标准的“继续阅读”链接,但我也希望在其他帖子中使用不同的文本,如“更多信息”。我可以使用the_excerpt?稍后更新:这是两个标准的twentyelven函数,用于“阅读更多”或“继续阅读”链接。function twentyeleven_continue_reading_link() { return \' <a href=\"\'. esc_url( get_permalink() ) . \'\">
the_excerpt not showing posts
我正在使用以下代码在我的登录页上显示最新的帖子:<?php if (have_posts()) : ?> <?php if (($wp_query->post_count) > 1) : ?> <?php while (have_posts()) : the_post(); ?> <?php the_excerpt() ?> <?php endwhile; ?> <?php el
主页上的自定义摘录长度
我本以为我能做到这一点,但不幸的是,事实并非如此。我需要我的静态主页有一个50的摘录长度,每隔一页有一个20。以下是我目前的代码:function custom_excerpt_length( $length ) { if(is_front_page()) $content=\'excerpt\'; return 50; } add_filter( \'excerpt_length\', \'custom_excerpt_length\', 999 )
添加视频作为后期缩略图(没有剧照,只有较小尺寸的播放器)
我正在startsite上使用带有post缩略图的摘录。添加图像效果很好。但我如何将vimeo或youtube上的视频作为帖子缩略图嵌入?只是较小尺寸的视频,而不是屏幕截图。有什么想法吗?
get excerpt without images
有没有办法不使用get\\u the\\u extract()获取图像?我正在使用my\\u recent\\u post()函数将帖子拉到主页上,我不需要让它拉帖子中的图像,只需拉一些文本。下面是我正在使用的函数:function my_recent_post() { global $post; $html = \"\"; $my_query = new WP_Query( array( \'post_type\' => \'po
根据内容长度更改行为
我有大量的帖子,有些只有一句话。这意味着对于某些帖子,所有内容都可以在存档中读取,而无需转到帖子的单个页面。对于这些帖子,我想禁用帖子标题中的\\u permalink。是否有办法检测摘录长度是否达到限制?然后我可以用<a href=\"<?=($if_has_more_link ? the_permalink() : \'#\' )?>\" ><? the_title(); ?></a>
修改‘阅读更多内容’链接,添加一个新类
我想在“阅读更多”链接中添加一个类。实际上我有这个:<?php the_content( \'Read more...\' ); ?> 其输出:<a href=\"...?p=14#more-14\" class=\"more-link\">Read more…</a> 如何将类(使用PHP)添加到链接中,使其输出:<a href=\"...?p=14#more-14\" class=\"more-link my_new_class\">
向BuddyPress博客目录页添加摘录和发布缩略图
我想知道是否有人可以帮助我,我正在尝试显示buddypress博客目录页面中显示的帖子的摘录和缩略图。默认情况下,只显示指向帖子的头像拇指和标题链接。我基于函数创建了一个函数bp_blog_latest_post() 在博客循环中使用,但我不确定如何继续。我可以看到blog模板类已被访问,但不知道如何访问更多信息,如果无法访问,那么我是否还需要使用buddypress摘录过滤器?这是迄今为止略微定制的功能。。<?php function bp_blog_latest_post_ex
当POST没有摘录时,get_the_excerpt()不返回任何内容
在尝试呼叫时get_the_excerpt() 该页面不会在没有摘录的帖子上返回任何内容。我认为WordPress通常会“伪造”它,并使用the_content().还是事情变了?
如何在摘录中包含换行符?
如何在\\u摘录中包含换行符。我通过我的函数修改了长度和“更多”按钮。php。我在每一篇博客文章中都使用了挑逗,有时它看起来有点难看,因为没有包含换行符。
如何使用自定义帖子类型仅显示内容的摘录?
<?php /* Template Name: second */ ?> <?php get_header(); ?> <?php query_posts(array(\'post_type\'=>\'event\')); ?> <?php if(have_posts()) while(have_posts()) : the_post(); ?>
Excerpt not alway available
我有一个php函数,可以打印最后三篇文章的标题和摘录。第一篇文章没有摘录。代码如下: $posts = wp_get_recent_posts( array(\'numberposts\' => 3, \'post_status\' => \'publish\') ); foreach ($posts as $post) { setup_postdata($post); echo \"<h2 style=\'font-size:
如何在没有[...]的情况下获得未经过滤的摘录或自动摘录
获取摘录的标准方法是使用the_excerpt() 或get_the_excerpt() 模板标记。我正试图获取摘录字段的实际内容。如果有摘录,我想完整地显示它(不删节或追加[…])。如果没有摘录,我不想显示任何内容。在Wordpress中有没有一种简单的方法可以做到这一点?类似这样:$real_excerpt = ??? if ( $real_excerpt ) { echo $real_excerpt; } // shouldn\'t show anythin
限制帖子内容中的字数,并添加阅读更多链接
正如您在代码中看到的,例程是显示具有id 属于266. 现在我只想限制该帖子内容中显示的单词。比方说,我想把单词限制在300个以内,然后添加一个阅读更多链接。这是我到目前为止得到的代码: $post_id = 266; echo \"<div id=\'widgets-wrapper3\'><div id=\'marginwidgets\' style=\'overflow: auto; max-width: 100%; margin: 0 auto; border
如何修改此页面模板以显示子页面摘录(而不是发布摘录)?
我制作了一个页面模板,使用以下代码显示链接的子页面:<?php $mypages = get_pages( array( \'child_of\' => $post->ID, \'sort_column\' => \'menu_order\', \'sort_or foreach( $mypages as $page ) { $content = $page->post_cont
wp trim function not working
好的,我现在有这个代码。<?php query_posts(\'category_name=widgets2\'); echo \"<div id=\'widgets-wrapper2\'><div id=\'marginwidgets\' style=\'overflow: auto; max- width: 100%; height: 450px; max-height: 100%; margin: 0 auto;\'>\";
excerpt in characters
我在函数中有代码。php:function string_limit_words($string, $word_limit) { $words = explode(\' \', $string, ($word_limit + 1)); if(count($words) > $word_limit) array_pop($words); return implode(\' \', $words); } 但我需要限制摘录的字符数,
正在尝试编辑Archive.php以仅显示帖子摘录,并带有特色图像
我使用两个主题(完整主题和桌面主题),所以我试图让它们以类似的方式运行。存档。用于移动主题的php正在做我想要做的事情,即只显示标题和帖子摘录。我认为这是一段代码:<?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( \'content\', get_post_format() ); ?> <?php endwhile; ?> 存档。桌面网站的php
摘录后的前三张图片
我有一些帖子只不过是[图库],里面有很多图片。有没有办法定义一个自动生成的摘录,只显示索引中这些帖子的前三幅图片,这样用户就必须点击才能看到其余的?非常感谢。