| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 1 month |
| seen | 17 hours ago | |
| stats | profile views | 64 |
|
Apr 17 |
awarded | Critic |
|
Apr 17 |
comment |
Control resizing of uploaded images because that is the opposite of what I am trying to do. I am adding a custom script to my site to handle the images. I am going to use WordPress built in features with the script. If you add image size then it will add those sizes plus all the others. I am also not talking about the post thumbnail in this question |
|
Apr 17 |
comment |
add_theme_support( 'post-thumbnails', array( 'post')); is not uploading the file are you adding the image from the featured image in the post edit screen? does the image show in the post edit screen? What does your page source show? what is the process that you are taking to add the image? |
|
Apr 17 |
asked | how to set up permalinks to contain special characters |
|
Apr 16 |
asked | Control resizing of uploaded images |
|
Apr 15 |
comment |
Nivo Slider Pulling In Wrong Size Image Have you checked the code in the theme? It might be calling a specific image size in the theme files. |
|
Apr 9 |
accepted | get post by nav id |
|
Apr 8 |
asked | Custom navigation links issue |
|
Apr 8 |
accepted | Get page IDs from nav items |
|
Apr 6 |
comment |
Get page IDs from nav items It took me a while to get the code that I posted above to work. I have been trying to add your code in but I have not been able to get it to work. I took out the foreach loop and tried your line above but got nothing. How do I use your example? |
|
Apr 6 |
revised |
Get page IDs from nav items edited title |
|
Apr 6 |
asked | Get page IDs from nav items |
|
Mar 31 |
awarded | Yearling |
|
Mar 30 |
asked | get post by nav id |
|
Mar 29 |
comment |
add_image_size() to crop images into squares? well then maybe I don't understand what you are talking about. When you put in this plugin, you would replace the featured image with a call to the aq_resize function instead. So every image uploaded by the uploader would automatically be resized to whatever size you tell it. Like so aq_resize(510, 256); You would have to do the same thing with the featured image because you would have to call every image size that you created with add_image_size. Maybe you should add more information in your question so it makes more sense. This script resizes each image on the fly. |
|
Mar 28 |
comment |
add_image_size() to crop images into squares? That plugin can be easily integrated into your theme. You upload the folder and use and include in the function.php file. It doesn't have to be a plugin. |
|
Mar 28 |
comment |
confused on the_loop All those ideas sound good and useful. I will look into get_template_part and the category-{slug} idea. Thank you |
|
Mar 28 |
answered | add_image_size() to crop images into squares? |
|
Mar 28 |
accepted | pre_get_posts returning unformatted page |
|
Mar 28 |
comment |
confused on the_loop I found that it's the pre_get_posts that I was using to display pages on the homepage. For some reason, pre_get_posts will not allow page templates to show on the homepage. All my templates are set up by categories. So each template has it's own category that posts are made to. They work fine if the homepage would show them with the pre_get_posts |