Displaying a Metabox linked to post settings for all users

It’s hard to give a precise answer without seeing the metabox code itself and how it works, but most likely you’d want to change the current_user_can function to look for the read capability. All users — contributors, editors, regular users — have this capability.

Saving metabox content not working

The main problem is you’re not echoing names of your fields. Like <input type=”text” name=”<? ‘jugador_’ . $contador ?>” should be <input type=”text” name=”<? echo ‘jugador_’ . $contador ?>” Still, I have a better suggestion. You can use arrays in your form submission. So your metabox callback function should look like this: function mock_metabox() { … Read more