Questions tagged [wordpress]
open source content management system running on PHP and MySQL, and often used as a blog engine.
38 questions
1 vote
1 answer
137 views
Best practice for integrating UI and dynamic user-specific content using a Flask app
I am building a website that uses a recommendation system. Users submit a form which is sent to the backend for the recommendation logic calculation; the recommendation response is sent back to the ...
-1 votes
1 answer
746 views
Adapter pattern for formatting third party API responses
I've been refactoring some of my procedural code to OOP, and I'm wondering if using the adapter pattern is overkill in this case. Basically, I created a Order class. All class properties are a field ...
0 votes
1 answer
48 views
Sould I .gitignore build output for a WordPress plugin?
Our builds are not binary by nature of WordPress PHP/JS, merely combined and minified. But they can be re-created by any developer easily and I feel like they shouldn't be version controlled but I ...
2 votes
0 answers
52 views
Wordpress and git, (using WPE), how do you incorporate database changes into the workflow?
We use WordPressEngine and want to have multiple developers and multiple branches using git. One challenge is how do we incorporate the database into the workflow? Should we take a sql dump and ...
3 votes
0 answers
94 views
What're the necessary considerations when developing Cron Jobs (Scheduled Tasks)
I'm working on a website that has a section that shows the company's stock details and investor-related data. This data is retrieved through scheduled SOAP API calls. I created two scheduled tasks ...
-1 votes
1 answer
54 views
Working On Remote Errors in a Variety of Environments Without FTP or SSH Access
BACKGROUND: I've been developing in PHP for two years - self taught, and beyond the most basic editing, really just a year and a half - but my experience is limited to a small number of environments. ...
0 votes
2 answers
225 views
When dealing with user-generated content, is it always better to just use a CMS like WordPress?
I am a web developer who is planning to build a web application which requires user-generated input, with that input presented somewhat like a blog in the sense that there is an article with pictures, ...
3 votes
0 answers
2k views
Realizing pagination for merged array from multiple data sources (APIs)
I'm improving a WordPress theme with PHP. The theme contains a gallery section which loads data from the Flickr API. Now the client wants to display Flickr galleries as well as "local" galleries ...