wordpress-admin

WordPress Access

怎甘沉沦 提交于 2019-12-30 14:52:46
问题 I'm working on a website with a friend using Wordpress and we are trying to access the same WordPress account from both mine and his computer, so that we can work on the website together. We have tried to add each other as admins but can only access the new account from the computer the admin has been created on. Does anyone know how to do this? By the way wordpress is run on wampserver 回答1: WAMP server is for local development (like XAMP, LAMPP and MAMP). When you install WAMP and install

How to link to a custom php page on a Wordpress Admin Plugin?

北战南征 提交于 2019-12-10 11:09:27
问题 I am quite new in wordpress dev and I am writing an Admin plugin to handle certificate creation. I achieve to create the plugin, and I have it in the Admin Menu via the add_menu_page. Here is the plugin concept: I used the WP_List_Table to display the list of users. I have added custom columns with some user meta-data. I have added a custom column with a button. This button should display a form (with the correct items data to create a certificate. this form is designed in the file test.php.

Creating a “repeater fields” without a Plugin

让人想犯罪 __ 提交于 2019-12-07 18:14:22
问题 I want to create a repeater meta box without using any type of plugin. How can I get this metabox in my "selected template"? 回答1: add_action('admin_init', 'gpm_add_meta_boxes', 2); function gpm_add_meta_boxes() { add_meta_box( 'gpminvoice-group', 'Custom Repeatable', 'Repeatable_meta_box_display', 'page', 'normal', 'default'); } function Repeatable_meta_box_display() { global $post; $gpminvoice_group = get_post_meta($post->ID, 'customdata_group', true); wp_nonce_field( 'gpm_repeatable_meta

How to link to a custom php page on a Wordpress Admin Plugin?

末鹿安然 提交于 2019-12-06 12:11:58
I am quite new in wordpress dev and I am writing an Admin plugin to handle certificate creation. I achieve to create the plugin, and I have it in the Admin Menu via the add_menu_page. Here is the plugin concept: I used the WP_List_Table to display the list of users. I have added custom columns with some user meta-data. I have added a custom column with a button. This button should display a form (with the correct items data to create a certificate. this form is designed in the file test.php. (Exactly the same way the edit user link is acting). What I would like to do is : I would like my

Creating a “repeater fields” without a Plugin

谁都会走 提交于 2019-12-05 21:39:57
I want to create a repeater meta box without using any type of plugin. How can I get this metabox in my "selected template"? Developer add_action('admin_init', 'gpm_add_meta_boxes', 2); function gpm_add_meta_boxes() { add_meta_box( 'gpminvoice-group', 'Custom Repeatable', 'Repeatable_meta_box_display', 'page', 'normal', 'default'); } function Repeatable_meta_box_display() { global $post; $gpminvoice_group = get_post_meta($post->ID, 'customdata_group', true); wp_nonce_field( 'gpm_repeatable_meta_box_nonce', 'gpm_repeatable_meta_box_nonce' ); ?> <script type="text/javascript"> jQuery(document)

WordPress Localhost [duplicate]

不打扰是莪最后的温柔 提交于 2019-12-02 22:49:04
问题 This question already has answers here : WordPress Access (2 answers) Closed 2 years ago . How can 2 people develop a website on a local host with different computers? We would like to create a website for a company, but not on a host whilst it is live. Ideally we would like to have it live once we have finished but we are working from two different computers. Does anyone know how we could simultaneously work on this with different computers? 回答1: Yes and no. One of the computers can have a

WordPress Access

巧了我就是萌 提交于 2019-12-01 14:43:00
I'm working on a website with a friend using Wordpress and we are trying to access the same WordPress account from both mine and his computer, so that we can work on the website together. We have tried to add each other as admins but can only access the new account from the computer the admin has been created on. Does anyone know how to do this? By the way wordpress is run on wampserver WAMP server is for local development (like XAMP, LAMPP and MAMP). When you install WAMP and install Wordpress inside it, it can be only accessed from that computer. You can create multiple admin accounts on