J
by jmb272
0 (0 reviews)
JMB Post Feeds
Create post feeds in CSV, XML, RSS, Google RSS, Text & Custom formats.
Tested up to WP 4.8.27 (Current: 6.9)
v1.0
Current Version v1.0
Updated 8 years ago
Last Update on 19 Jul, 2017
Synced 7 hours ago
Last Synced on
Rank
#46,926
—
No change
Active Installs
0+
-100%
KW Avg Position
N/A
—
No change
Downloads
1.1K
—
Total downloads
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 10
0+
10+
14,503
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 7 more installs to reach 10+
Rank Changes
Current
#46,926
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
0.0
0 reviews
Overall
0%
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.0
- Last Updated
- Jul 19, 2017
- Requires WP
- 4.0+
- Tested Up To
- 4.8.27
- PHP Version
- N/A
- Author
- jmb272
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about JMB Post Feeds
Upload the plugin to the '/wp-content/plugins' directory.
Activate the plugin through the 'Plugins' menu in WordPress.
Activate the plugin through the 'Plugins' menu in WordPress.
'Text 2',
'ext' => '-text-2.txt',
'callback' => 'jmb_pf_text_2_format',
);
return $settings;
});
?>
Then create the Export Function that takes the feed data and exports it to a file, like so:
'',
'posts' => array(),
), $args );
if ( empty( $a['posts'] ) ) {
return;
}
$text_content = '';
foreach ( $a['posts'] as $post ) {
if ( ! empty( $text_content ) ) {
$text_content .= "\n";
}
foreach ( $post as $data_name => $data_value ) {
$text_content .= sprintf( "%s ", $data_value );
}
}
if ( ! empty( $a['file_name'] ) ) {
$fp = fopen( $a['file_name'], 'w' );
fputs( $fp, $text_content );
fclose( $fp );
return true;
}
return $text_content;
}
?>
'ext' => '-text-2.txt',
'callback' => 'jmb_pf_text_2_format',
);
return $settings;
});
?>
Then create the Export Function that takes the feed data and exports it to a file, like so:
'',
'posts' => array(),
), $args );
if ( empty( $a['posts'] ) ) {
return;
}
$text_content = '';
foreach ( $a['posts'] as $post ) {
if ( ! empty( $text_content ) ) {
$text_content .= "\n";
}
foreach ( $post as $data_name => $data_value ) {
$text_content .= sprintf( "%s ", $data_value );
}
}
if ( ! empty( $a['file_name'] ) ) {
$fp = fopen( $a['file_name'], 'w' );
fputs( $fp, $text_content );
fclose( $fp );
return true;
}
return $text_content;
}
?>