To display content and permalink of About Us page you should use get_permalink() function by passing page id to it and instead of the_content_rss() function, you should directly echo $page->post_content by trimming content using wp_trim_words() function.
The changed code is as following.
<?php
$page = get_page_by_title( 'About Us' );
$content = apply_filters('the_content', $page->post_content);
echo wp_trim_words( $content, 100, '');
?>
<a href="https://wordpress.stackexchange.com/questions/110739/<?php echo get_permalink( $page->ID ); ?>" title="Read the whole post" class="rm">Read More</a>
Related Posts:
- Serve specific “template” page at any URL that ends in its slug
- Display custom tags on pages that have a specific page parent
- Determine if ID is page or post and query the ID
- How to query for a page, get data, then query for child pages of that page
- WordPress pagination returns the same posts
- Some doubts about how the main query and the custom query works in this custom theme?
- Wp get all the sub pages of the parent using wp query
- How to query for most viewed posts and show top 5
- Query Posts in a Predefined Order
- Get posts by meta data OR title
- Perform query with meta_value date
- Using is_main_query to select custom post type on certain page
- WP_Query ordered by custom field that is a date string?
- Display Posts by modifying the where clause only for my query
- How do I create my own nested meta_query using posts_where / posts_join?
- How to use filter hook posts_join for querying taxonomy terms in posts_where?
- Best practice for multiple queries on page
- How to Get All Posts but the Private ones?
- Single page theme that uses pages for the content
- How to query ‘posts_per_page’ to display a different blog posts index template?
- How to find out what “Blog pages show at most” is set to [duplicate]
- Targeting specific pages in the loop
- What are the differences between “Latest Posts” and “Static Page”?
- Retrieve or Query Pages by ID
- WP query exclude post within the last month / only show over 1 month old
- WordPress query for most recent posts from multiple categories
- How to implement time filter to show random post 1 month for one category and 3 months for other categories
- Too many posts cause slow load when paginating
- How can I pick a single post from the latest 3?
- Query post with meta_query where date is not in future
- Order a query result by a numeric meta key even if it does not exist, but put the posts with meta key first
- Query with custom taxonomy not working
- Query posts by specific word on title
- Set if condition with wp_nav_menu
- WP_Query last five posts, simply ordered by meta_value
- WP_Query “OR”: Find posts by ID, Name or Post Title?
- How to build a WP_Query using mulitple tags and using AND or OR operator between them
- Multiple loops without repeating content
- WP_Query condition affects posts_per_page count
- How to display summary content from a Page (Not a Post) on another page
- Custom Query num_rows returns wrong amount
- Fetch Record based on meta key dates
- add active class based on permalink and url
- Slow page loads due to WordPress Core Query
- Filtering out child category posts from parent category archive not working
- Is there a better way to pull in custom content without querying posts?
- How to query for all posts that have a particular meta key?
- Reset WordPress Post Query to default
- Advanced WP Query and/or
- How can I override one post and make it display content for another post?
- Get all posts which was posted on X Days WordPress
- Exclude parent with child pages from WP_Query
- How to create custom query by keyword in post title?
- Create a loop on my pages with new “WP_Query”
- All blog data on a page using custom query gives 404 for page 2 and onward
- How can I comment comma-separated array values?
- When listing child pages run out of memory
- WPQuery calling specific posts problem
- WP_Query with multiple orderby NOT working with ASC and DESC, what’s wrong?
- Creating attachments archive in tags and categories
- How to use ‘WP_Query’ or ‘query_posts’ to display content in a descending order
- 2 queries with counters
- Multiple Query_Posts
- Get list of all Grandchild Pages
- Posts limit on homepage (genesis framework)
- Custom query does not find pages
- How to get pages of parent (non-recursive)?
- Magazine style frontpage with multiple categories/loops and no duplicate posts
- How do i create a custom post query when the meta value is an array?
- How to use custom page for all posts with custom url, call another directory?
- query hook parse_tax_query function takes no effect
- Duplice post with standard WP loop – fixed by using query_posts() instead
- ElasticPress is (aparently) messing with my search filters
- Query for current post
- Custom query to retrieve oldest post and retrieve others with date interval
- Order by meta date with a thousanth of a second defaults to post order
- Custom query for custom post type not getting correct post ID
- Sorting query_posts() with a complex orderby filter
- How to show post title in content editor in backend?
- Merge two queries and remove duplicate
- How to create page that lists tags by initial letter?
- Seach and categories not working when ignoring sticky posts in main loop
- posts_per_page increment additional post
- Pull posts from all categories if quantity is not met?
- Get a page ancestor from a most viewed list
- How can I use a specific wordpress page template if certain words are used in page title [closed]
- Query_post 5 post first / last of post_id
- Calling body_class and wp_nav_menu for a different post
- Category Archive not working for pages
- how to exclude store in clipper theme wordpress code php
- Display post list within category list sorted by name [duplicate]
- Show parent’s child and also child’s, child on a page?
- When should you use WP_Query vs query_posts() vs get_posts()?
- How to query post ids liked by the Author
- Converting an existing query_posts to WP_Query
- WordPress Query showing multiple titles
- custom query to get posts
- Hierarchical List Pages as a table
- Help in query for list links
- Incorrect posts displayed on category page