It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
If possible, kindly tell what is the name of the item attached in the image (e.g. Excerpt, post summary or anything else) in wordpress .. The purpose of knowing the name is so that the appropriate term can be searched on the internet.
if possible, also kindly tell that how can this be achieved via plugin or programming . (showing posts belonging to certain category on a certain page..
Regards,
The image has many terms , it can be refereed to as the_post_thumbnail , an attachment, an image type attachment , a thumbnail ,featured image . etc depending on context .
But I think that the term you are searching for is the_post_thumbnail() and Featured_image
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have create a content type for drupal website as shown below:
Is there any built in module similar to this or any tutorial links that would help me to start making this kind of content type
Thanks in advance
Well for starts, your going to need CCK to add custom fields to your content type (image, description, title, specifications, applications, design features)
http://drupal.org/project/cck
Your going to need to make some taxonomy to tag each of your nodes with
Once you create the taxonomy, create custom fields that are (Taxonomy Term References)
Drupal Quick Tabs will help create the "look & feel" for the bottom tab area
http://drupal.org/project/quicktabs
You most likely will need Views as well
http://drupal.org/project/views
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
For example; I have 10 Text widgets, but I want to display only 1 widget. Is it possible to display widget by it's name?
If I use <?php dynamic_sidebar('sidebar'); ?> it will display all the widgets which are in the sidebar.
Yes you can display a specific widget by passing name (also an optional parameters) check this,
the_widget('WP_Widget_Text', $instance, $args);
Use the Display Widgets plugin.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm a bit new to wordpress plugin coding. I've been working on a plugin that will be very large, and contain many custom data structures.
I know this is a pretty general question, but I have a list of items (groups) on my options page. I'd like the entire options page to just use the settings api, but this list needs to have items added/edited/deleted from it. Does anyone have a good example of how to do this?
although I saw an exmple before - I can not remember where . But what I have tried to explain to you above is that first you need to add the elements using jQuery append like here : Dynamically adding HTML form field using jQuery then, for the options, just create an array, like here described here : http://wordpress.org/support/topic/dynamic-options .
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Firstly apologies I've re-edited this as the original was so vague.
What I have is a Drupal overlay which only displays a form. The issue is the overlay also displays the page header such as the logo and menu links. I don't want it to display this and was hoping someone could tell me how to prevent this without using CSS to hide the header div within that specific overlay, as although this is a temporary fix, is poor coding.
Thanks,
Rick
You can use drupal_get_form('form_id') to get the complete html of the form in a div and use css/js to get desired result.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have this drop down menu.It stores month, Jan-Dec. User can choose any value of the drop down menu but just one time only. Meaning, lets say previously he choose Jan, the next time if he logged in/ enter new record, he cannot choose Jan anymore or maybe remove the month permanently. Once he select the month, it will be store in session to other page. So, if you guys have any idea,suggestions, or plans, dont hesitate to leave ur answer here. Thank you.
Here are three working examples of what you're looking for:
Using jQuery:
http://jsfiddle.net/wLNZX/
With plain JavaScript:
http://jsfiddle.net/wLNZX/1/
Coded inline with the <select> tag:
http://jsfiddle.net/wLNZX/2/