0

我想在我的 wordpress 博客中添加 tu 字幕。因为我没有让它与自定义元字段一起使用这个插件: http ://wordpress.org/extend/plugins/the-subtitle/

如果我只使用一次,这实际上确实有效。

我制作了这个插件的副本并重命名了所有 id/classes/functions 等,但是两者都有一个相同的信息,我不知道如何更改它。

function the_company_meta_save($post_id){

    //check to see if this is an autosafe and if the nonce is verified:
    if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) 
        return;

    if (!isset($_POST['the_company_nonce']) || !wp_verify_nonce( $_POST['the_company_nonce'], plugin_basename( __FILE__ ) ) )
        return;

    //update the postmeta accordingly:
    update_post_meta($post_id, 'the_company_subtitle', $_POST['subtitle']);
    return;
}

这在两个插件中都是一样的,这就是它不能正常工作的原因:

$_POST['subtitle']);

如果我更改一个插件的“字幕”,它仍然不起作用,但我必须更改它,因为如果我不更改,两个字幕显示相同的信息。但它们应该显示不同的。

4

0 回答 0