Md Alamin
Forum Replies Created
-
Yes the have used CPT and the wrote
'supports' => array( 'title', 'editor', 'custom-fields' ),
in the CPT and i change it to'supports'=> array( 'title','editor', 'custom-fields','publicize')
but it is not working. But it is working for any other CPT. Please tell me the solution.Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Publicize custom post typeHi SussieT , I am facing the same problem like you. My CPT is also created in a plugin. It is WP Job Manager plugin. Please tell the solution.
Thanks.
Forum: Plugins
In reply to: [WP Job Manager] Making Jetpack publicize work with Job postingsThanks i am looking exactly this one. But it is not working to me. I have edit the plugin. But Publicize is not showing publish section when i am creating a new job. Please tell me the solution.
Forum: Themes and Templates
In reply to: Why Code not changing ?This is the site link https://www.rentthefarm.com/services
Forum: Fixing WordPress
In reply to: How to convert html botton to wordpress?suppose, i have wrote this code
<a href="index.php">Home</a>
in html and css. So it is statics. Now i want to convert it to wordpress. How can i write the code?Forum: Fixing WordPress
In reply to: How to convert html botton to wordpress?yes this is the button of other pages. suppose .
<a href="#">title</a>
So how can i made dynamic the “title” word? is it necessary or not?Forum: Themes and Templates
In reply to: navigation menu problemI have just added the following code to my functions.php file
function register_my_menus() { register_nav_menus( array( 'header-menu' => __( 'Header Menu' ), 'extra-menu' => __( 'Extra Menu' ) ) ); } add_action( 'init', 'register_my_menus' ); ?>
and the following code to my header.php file
<?php wp_nav_menu( array( 'theme_location' => 'header-menu' ) ); ?>