您当前的位置:首页 > TAG信息列表 > actions
从gensis_loop中删除gensis_404挂接
我正在使用genesis主题,我想定制一个404页面。为此,我希望删除默认的404钩子并实现我自己的钩子。在我的插件函数中。php我添加了我的操作:add_action( \'genesis_loop\', \'genesis_customizations_404\' ); 在函数中,我添加了删除:function genesis_customizations_404() { echo \'test\'; remove_action(\'genesis_loop\',
如何删除对子主题的自定义操作?
在父主题上index.php 我有以下代码:// The function. add_action( \'mytheme_example_action\', \'mytheme_example_function\' ); function mytheme_example_function() { echo \'Example text on index page.\' } // After function was defined i do the
将插件html内容插入到首页中的特定位置
我正在尝试将插件html内容插入到网站首页的特定位置。该网站使用Divi主题。我尽量避免将任何代码放在原始Wordpress或Divi主题文件中,以免任何更新都会删除代码。这question 有点像我的,但我不认为我需要做什么有什么挂钩。我可以在我的插件中使用此代码将插件内容显示在frontpage的顶部。(我简化了插件代码,以节省这个问题的空间)add_action( \'template_redirect\', \'insert_img\' ); function insert_im
删除帐户后调用自定义操作
我想在用户删除其帐户后调用自定义操作。我正在使用高级主题wplms,它使用buddypress来处理这些内容。在delete-account.php 在提交后,将调用操作bp\\u members\\u delete\\u account\\u: //... <div class=\"submit\"> <input type=\"submit\" disabled=\"disabled\" value=
为什么在WordPress中注册的ADD_ACTION不能使用AJAX
我在WordPress中创建了一个模板页面,并使用add\\u action定义Ajax中使用的操作。 <?php /*template name: get_pass */ add_filter(\'wp_ajax_my_action1\',\'mda_get_license\'); function mda_get_license(){ echo 54; die(); } ?> 使用j
Action when sidebars updated
侧边栏更新后是否会触发任何操作?例如,对于菜单,我使用wp_update_nav_menu, 但我没有找到任何方法来使用侧边栏做类似的事情。
How to remove function?
我试图删除父主题中定义的函数,但无法使其正常工作。我要删除的函数将打印上一次/下一次后期导航。功能如下:add_action( \'generate_after_entry_content\', \'generate_footer_meta\' ); function generate_footer_meta() { if ( \'post\' == get_post_type() ) : ?> <footer class=\"entry-meta\"&
Remove Editor From Homepage
我正在尝试使用以下功能从主页中删除编辑器,但我很难做到这一点?function hide_homepage_editor() { if ( is_admin() ) { if (is_front_page()) { remove_post_type_support(\'page\', \'editor\'); } } } add_action( \'admin_init\', \
查看POST编辑屏幕上的POST是否刚刚更新
是否可以添加admin_notice 到立柱。php管理中的编辑屏幕–仅当帖子刚刚更新时。function my_admin_notice(){ global $pagenow; if ( $pagenow == \'post.php\' ) { // Check if the post was just updated... echo \'<div class=\"notice notice-warning is-di
如何从untrash_post操作中获取所有ID?
当用户选择恢复时a 通过以下方式发布(“垃圾”文件夹中的内容untrash_post, 我得到了id 的职位。function my_untrash_post_type( $post_id ) { echo \'<script> alert(\'.$post_id.\'); </script>\'; wp_die(\'stop\'); } add_action(\'untrash_post\' , \'my_untr
如何传递挂接到单个操作的多个函数的参数?
我想为参数设置默认值:function my_function( $arg = \'foo\' ) { echo $arg } add_action(\'my_action\', \'my_function\'); function my_2nd_function( $arg = \'bar\' ) { echo $arg } add_action(\'my_action\', \'my_2nd_function\');
删除类别页面以外的元框
要禁用除类别页面上的自定义字段之外的自定义字段,我如何检查它是否是类别页面?也许是这样的:add_action( \'admin_menu\', \'remove_custom_fields\' ); function remove_custom_fields() { if( /* code to check if page is not category page */){ remove_meta_box(\'postcustom\'
根据变量添加/删除Cron操作
我已将一个函数挂接到一个名为\'job_manager_check_for_expired_jobs\', 我希望它基于变量的值运行$create_sitemap. 默认情况下,该值为true,但可以通过过滤器进行更改。问题是,如果我使用该站点,然后将过滤器更改为false,那么钩子仍会像变量为true一样运行,因此操作不会被删除。我使用的代码在这里,任何帮助都将不胜感激! // Check the WPJM plugin exists if( is_plugin_active(
如何在使用发布帖子操作编辑或更新帖子时运行函数?
我想运行一个function A() 发布帖子时function B() 编辑或更新同一帖子时。为此,我发现每当发布帖子,或者编辑帖子并将状态更改为“发布”时,都会触发该操作。如何使用此“发布帖子”操作来知道帖子已被编辑或更新,以便我可以运行function B()?
Add html code in admin page
我正在尝试在管理页面中添加浮动按钮。如果我使用add_action(\'admin_footer\', \'my_admin_function\'); 按钮将位于页面底部,我需要向下滚动。我需要的按钮总是在屏幕底部,我不必向下滚动。是否有可以在正文中添加一些代码的动作API?
将数据放入My-Account/View-Order/id/页面
是否有过滤器或操作将信息放在订单状态信息之后“订单详细信息”标题之前?我找到了“woocommerce\\u view\\u order”操作,但它会将所有内容放在页面底部。
Keep br tags from stripping
是否有一些过滤器来禁用这个有时很糟糕的功能?我需要一些自定义帖子类型的内容显示完整,所有的<br>s获取我正在使用的内容get_the_content(); 的内部WP_Query 循环,在shortcode函数内部。如果有任何线索,我都很感激,但如果没有“插件”这个词的回答,我会大吃一惊。
Extend a class of a plugin
有一个插件使用一个类;并创建如下对象:class WC_Disability_VAT_Exemption { public function __construct() { add_action( \'woocommerce_after_order_notes\', array( $this, \'exemption_field\' ) ); } public function exemption_field()
Form action unfamiliar
我正在重构标题中的一些代码。php:<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"> <html xmlns=\"http://www.w3.org/1999/xhtml\" <?php language_attributes(); ?>> &l
如何从回调函数访问$POST
我想知道是否使用global $post 当需要获得$post 在由动作挂钩触发的回调函数中。代码是:class myPlugin { public function __construct() { add_action(\'wp\', array( $this, \'init\')); } public function init() { global $post;