Category: Admin
BB-YES
https://skydome.com.au/slot-gacor/ https://wilmingtonbaptistchurch.com/link-slot-gacor/ https://embeff.com/slot-gacor-terpercaya/ https://golden-horn.de/wp-includes/slot-gacor/ https://www.almaluxjesolo.it/slot/ https://geographicforall.com/slot-gacor/ https://www.entrepueblos.org/slot-online-gacor/ https://destinyconnectfresh.org/slot-gacor-maxwin/ https://www.timothyegan.com/ https://semanamedioambiental.com/wp-includes/slot-gacor/ https://auditsocial.world/wp-includes/slot-gacor/ Slot Gacor Terbaru Slot Online Slot Judi Slot Gacor Slot Gacor RTP Slot Situs Slot Gacor Slot Tergacor Link Slot Gacor Situs Slot Gacor Terbaru Slot Gacor Gampang Jackpot…Continue reading
Formidable Pro – Merge Snippet
/* * WebMerge AGreements */ add_action(‘frm_after_create_entry’, ‘formidable_send_to_webmerge’, 0, 2); add_action(‘frm_after_update_entry’, ‘formidable_send_to_webmerge’, 0, 2); function formidable_send_to_webmerge($entry_id, $form_id){ if($form_id == 23){ $webmerge_url = ‘https://www.webmerge.me/route/28114/ymffng’; }elseif($form_id == 43){ $webmerge_url = ‘https://www.webmerge.me/route/28347/lmtb8i’; } else{ return; } $frm_field = new FrmField(); $fields = array(‘fields’ =>…Continue reading
Gravity Forms Submit Event
/** * Send a server-side event to the FB Conversions API when a Gravity Forms form is submitted using the Conversion Pixels addon. * * @param array $entry The entry data. * @param array $form The form data. */ add_action(…Continue reading
Replace all the URLs in the Schema with the current URL
add_filter( ‘aioseo_schema_output’, ‘aioseo_schema_change_urls’ ); function aioseo_schema_change_urls( $graphs ) { if ( false === strpos( $_SERVER[‘REQUEST_URI’], ‘home-search/listing/’ ) ) { return $graphs; } $request_uri = explode( ‘?’, $_SERVER[‘REQUEST_URI’] ); $uri = trim( ( $request_uri[0] ?? ” ), ‘/’ ); $old_url =…Continue reading
Load all Customizer “Additional CSS” in Block Editor
// Load the Frontend customizer “Additonal CSS” in the block editor. add_action( ‘enqueue_block_editor_assets’, ‘wp_custom_css_cb’ ); // Uncomment below if you need to manually manipulate the CSS for the block editor. // add_action( ‘enqueue_block_editor_assets’, function() { // ob_start(); // wp_custom_css_cb(); //…Continue reading
Scan images from Elementor Galleries and counts them for the sitemap XML
add_filter( ‘aioseo_sitemap_images’, /** * Find new images inside the post content which has Elementor galleries. * It only works for self-hosted attachments. * * @param array $images The images already found. * @param object $post The post object * @return…Continue reading
Order WPCode snippets by title in the admin
add_filter( ‘wpcode_code_snippets_table_prepare_items_args’, function( $args ) { if ( ! isset( $_GET[‘orderby’] ) ) { $args[‘orderby’] = ‘title’; } if ( ! isset( $_GET[‘order’] ) ) { $args[‘order’] = ‘ASC’; } return $args; });Continue reading
Export Categories and Tags
function export_tags_and_categories() { $terms = get_terms( array( ‘category’, ‘post_tag’ ), array( ‘hide_empty’ => false ) ); $output = fopen( ‘php://output’, ‘w’ ); fputcsv( $output, array( ‘Term ID’, ‘Name’, ‘Slug’, ‘Description’, ‘Taxonomy’ ) ); foreach ( $terms as $term ) {…Continue reading
Disable Posts Post Type
// Remove side menu add_action( ‘admin_menu’, function () { remove_menu_page( ‘edit.php’ ); } ); // Remove +New post in top Admin Menu Bar add_action( ‘admin_bar_menu’, function ( $wp_admin_bar ) { $wp_admin_bar->remove_node( ‘new-post’ ); }, 999 ); // Remove Quick Draft…Continue reading