How to add conent (text) to Add New pages form of admin in WordPress

The hook to use here is admin_notices. However in register_activation_hook and register_deactivation_hook it shouldn’t be used because these function run when plugin activates and deactivates instance. A workaround it we use add_option when plugin activates and delete_option when plugin deactivates. Here is the code. Hopefully you will understand it properly <?php function my_admin_notice() { $screen … Read more

Category For Pages In WordPress

You can add categories and pages with a hook function add_taxonomies_to_pages() { register_taxonomy_for_object_type( ‘post_tag’, ‘page’ ); register_taxonomy_for_object_type( ‘category’, ‘page’ ); } add_action( ‘init’, ‘add_taxonomies_to_pages’ );

Display custom_post_type with current taxonmy of a page

use some thing like this $queried_object = get_queried_object(); $term_id = $queried_object->term_id; Most probably $term_id should give the id of the taxonomy term of the current page, try echo $term_id; If it doesn’t then try using var_dump() like echo “<pre>”;var_dump( $queried_object )echo “</pre>”; Analyse the output , and use it according to your need

Search Page: activate html code if the tag is on the page

This is completely untested but I believe you would want something along these lines: <?php if( $loop->have_posts() ): while ( $loop->have_posts() ): $loop->the_post(); // Do stuff for results echo ‘<h2>’ . the_title() . ‘</h2>’; // Check for tag if(has_tag($tag) { output HTML if true } endwhile; else: echo “No Results!”; endif; ?>

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)