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)
v0.2.3
Current Version v0.2.3
Updated 15 years ago
Last Update on 14 Feb, 2010
Synced 14 hours ago
Last Synced on
Rank
#48,458
—
No change
Active Installs
1+
—
No change
KW Avg Position
N/A
—
No change
Downloads
1.5K
+1 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 10
0+
10+
3,072
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 30,719 more installs to reach 10+
Rank Changes
Current
#48,457
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,738
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#930
Query Monitor - The developer tools panel for WordPress
200K+ installs
#255
Header and Footer Scripts
200K+ installs
#258
Performance Lab
200K+ installs
#267
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);