根据查询中指定的页面标题获取内容和永久链接

时间:2013-08-19 16:58:08

标签: wordpress custom-wordpress-pages

下面是一个查询,它应该通过指定的页面标题从页面获取内容

<?php
    $page = get_page_by_title( 'About Us' );
    $content = apply_filters('the_content', $page->post_content); 

    the_content_rss('', TRUE, '', 100);
?>

    <a href="<?php the_permalink() ?>" title="Read the whole post" class="rm">Read More</a>

是的,它成功显示内容并将内容修剪100,但问题是内容和永久链接不是我从查询中提取的指定页面的内容和固定链接,我的意思是内容和永久链接不同于我拉起来的页面。有什么想法吗?我试图玩代码,但似乎没有任何作用,我目前正在网上寻找可能的解决方案但不幸的是,我一无所获。

PS:我只想显示内容并获取指定页面的永久链接,我将通过上面的查询提取。

2 个答案:

答案 0 :(得分:0)

您可以尝试以下代码吗?

<?php
    $page = get_page_by_title( 'About Us' );
    $content = apply_filters('the_content', $post->post_content); 
    echo substr($content,0,30);  
?>

<a href="<?php echo esc_url( get_permalink( $page->ID ) ); ?>">title="Read the whole post" class="rm">Read More</a>

答案 1 :(得分:0)

我已经明白了,感谢大家在这里..

我的更新代码是

<?php
    $page = get_page_by_title( 'About Us' );
    $content = apply_filters('the_content', $page->post_content); 

     echo wp_trim_words( $content, 100, '');
?>

<a href="<?php  echo get_permalink( $page->ID ); ?>" title="Read the whole post" class="rm">Read More</a>