我想在wordpress adminpanel的media.php部分的提交按钮中添加onclick
属性。我在哪里可以在Wordpress中编辑此按钮?它只写出<?php submit_button( __( 'Update Media' ), 'primary', 'save' ); ?>
,我找不到编辑HTML以添加onclick
的方法。
答案 0 :(得分:1)
函数submit_button($text, $type, $name, $wrap, $other_attributes)
位于第2169行的/wp-admin/includes/template.php文件中
submit_button(..)
然后它会在get_submit_button($text, $type, $name, $wrap, $other_attributes)
上进行调用,该调用位于第2190行的同一文件中。
不幸的是,没有apply_filters来修改WordPress的输出。在这种情况下,您必须在WordPress核心文件中进行更改。我不建议您对WordPress核心文件进行任何更改,因为在下次更新时,您将丢失该更改。