P
by John Bintz
1 (0 reviews)
Post Fixtures
Post Fixtures let you quickly tear down and set up test environments within your development WordPress environment.
Tested up to WP 2.9 (Current: 6.9.4)
v0.2.3
Current Version v0.2.3
Updated 16 years ago
Last Update on 14 Feb, 2010
Refreshed 6 hours ago
Last Refreshed on
Rank
#48,127
—
No change
Active Installs
1+
—
No change
KW Avg Position
N/A
—
No change
Downloads
1.5K
—
Total downloads
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 10
0+
10+
1,648
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 16,479 more installs to reach 10+
Rank Changes
Current
#48,127
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
- 0.2.3
- Last Updated
- Feb 14, 2010
- Requires WP
- N/A+
- Tested Up To
- 2.9
- PHP Version
- N/A
- Author
- John Bintz
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,721
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#954
InfiniteWP Client
200K+ installs
#253
Optimole – Optimize Images in Real Time
200K+ installs
#254
Firelight Lightbox
200K+ installs
#257
Frequently Asked Questions
Common questions about Post Fixtures
JSON { "posts": [ { "post_date": "2010-01-01 9:00am", "post_title": "This is a sample post", "post_content": "This is the post's content", "categories": [ "Top Level 1/Sub Category 1", "Top Level 2/Sub Category 2" ], "metadata": { "field-1": "value 1", "field-2": { "a_complex": "field", "with": [ "lots", "of", "nested", "datatypes" ] } }, "tags": "tag 1,tag 2" }, { "post_date": "2010-01-01 10:00am", "post_title": "This is the second sample post", "post_content": "This is the second post's content", "categories": [ "Top Level 1/Sub Category 2", "Top Level 2/Sub Category 2" ] } ], "options": { "an-option-to-set": "simple-string", "an-option-to-serialize": { "this": "is a hash" }, "an-option-to-delete": false } } PHP // build an object immediately, and get the new post's ID $post_id = $builder->post('This is a sample post') ->date('2010-01-01 9:00am') ->content("This is the post's content") ->categories("Top Level 1/Sub Category 1,Top Level 2/Sub Category 2") ->metadata('field-1', 'value-1') ->metadata('field-2', array( 'a_complex' => 'field', 'with' => array( 'lots', 'of', 'nested', 'datatypes' ) )) ->tags('tag 1,tag 2')->build(); // build and object at the end, if order doesn't matter $builder->post('This is the second sample post') ->date('2010-01-01 10:00am') ->content("This is the second post's content") ->categories("Top Level 1/Sub Category 2,Top Level 2/Sub Category 2")->defer(); // convenience wrapper around options setting $builder->option('an-option-to-set', 'simple-string') ->option('an-option-to-serialize', array('this' => 'is a hash')) ->option('an-option-to-delete', false);