by Eduardo Zulian
1 (0 reviews)
A Featured Page Widget
Feature a page and display its excerpt and post thumbnail.
Tested up to WP 4.3 (Current: 6.9)
v1.3
Current Version v1.3
Updated 10 years ago
Last Update on 30 Oct, 2015
Synced 15 hours ago
Last Synced on
Rank
#16,362
—
No change
Active Installs
100+
-24.8%
KW Avg Position
N/A
—
No change
Downloads
6.7K
+3 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 200
100+
200+
3,208
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 82 more installs to reach 200+
Rank Changes
Current
#16,362
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
1.0
0 reviews
Overall
20%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.3
- Last Updated
- Oct 30, 2015
- Requires WP
- 3.0+
- Tested Up To
- 4.3
- PHP Version
- N/A
- Author
- Eduardo Zulian
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,736
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
Qi Addons For Elementor
200K+ installs
#253
MW
MW WP Form
200K+ installs
#262
WPFront Scroll Top
200K+ installs
#270
Frequently Asked Questions
Common questions about A Featured Page Widget
page: The page ID. Required.
title: The widget title.
image-size: The post thumbnail size.
link-text: The text that will replace "Continue reading". You may leave it empty too.
Example:
<?php
the_widget( 'A_Featured_Page_Widget', array( 'page' => 734, 'link-text' => '', 'image-size' => 'large' ) );
?>
If you don't know the page ID, you can try get_page_by_path() function:
<?php
the_widget( 'A_Featured_Page_Widget', 'page=' . get_page_by_path( 'about' )->ID );
?>
title: The widget title.
image-size: The post thumbnail size.
link-text: The text that will replace "Continue reading". You may leave it empty too.
Example:
<?php
the_widget( 'A_Featured_Page_Widget', array( 'page' => 734, 'link-text' => '', 'image-size' => 'large' ) );
?>
If you don't know the page ID, you can try get_page_by_path() function:
<?php
the_widget( 'A_Featured_Page_Widget', 'page=' . get_page_by_path( 'about' )->ID );
?>
<?php
function mytheme_change_afpw_link_text() {
return 'Learn more';
}
add_filter( 'afpw_link_text', 'mytheme_change_afpw_link_text' );
?>
Why am I unable to define a manual excerpt for my pages?
First, check if the option for excerpts is not showing under "Screen Options". If that's the case, probably your theme doesn't support excerpts in pages. You need to use add_post_type_support() inside your functions.php file:
<?php
function mytheme_add_page_excerpt() {
add_post_type_support( 'page', 'excerpt' );
}
add_action( 'init', 'mytheme_add_page_excerpt' );
?>
Who are these three little witches on the banner above?
Arnaldo Baptista, Rita Lee and Sérgio Dias, also known as Os Mutantes, a Brazilian psychedelic rock band of the late '60s. You should check them out!
function mytheme_change_afpw_link_text() {
return 'Learn more';
}
add_filter( 'afpw_link_text', 'mytheme_change_afpw_link_text' );
?>
Why am I unable to define a manual excerpt for my pages?
First, check if the option for excerpts is not showing under "Screen Options". If that's the case, probably your theme doesn't support excerpts in pages. You need to use add_post_type_support() inside your functions.php file:
<?php
function mytheme_add_page_excerpt() {
add_post_type_support( 'page', 'excerpt' );
}
add_action( 'init', 'mytheme_add_page_excerpt' );
?>
Who are these three little witches on the banner above?
Arnaldo Baptista, Rita Lee and Sérgio Dias, also known as Os Mutantes, a Brazilian psychedelic rock band of the late '60s. You should check them out!