Anomaly with response coming from XML RPC Api get Post (integer out of range)
Anomaly with response coming from XML RPC Api get Post (integer out of range)
Anomaly with response coming from XML RPC Api get Post (integer out of range)
The theme you are using crops uploaded pictures, but there is always a version of the picture which keeps the original full size. Modify the code that render the picture that it will use the size parameter. Eg: Use: wp_get_attachment_image: echo wp_get_attachment_image( $attachment->ID, ‘full’ ); Or: display post_thumbnail: echo get_the_post_thumbnail( $post->ID, ‘full’ ); ‘full’ here … Read more
You require Advanced Custom Fields. Install the plugin in your site. Advanced Custom Fields Read the above documentation. Create a image upload field and use the field in both front-page.php and content-page.php
How can I hook and edit on the fly an image uploaded
For this feature to work the images must be uploaded to the media library from that page. In other words, clicking the “Add Media” button and adding images already in your media library won’t do it. You must click “Add Media” then “Upload Images” and add them to the page.
Custom WordPress Theme – No Slider(s) Images
I think it is possible with custom fields. Add a custom fields, for example, named link. Put the link into the value field. Then you will be able to access it something like that: <a href=”https://wordpress.stackexchange.com/questions/187970/<?php echo get_post_meta( get_the_ID(),”link’, true ); ?>”> <?php the_post_thumbnail(); ?> </a>
There is no default way to do this, but this popular plugin solves the issue for most people. I have no connection to the creators of this free plugin, but I’ve used it on several sites. https://wordpress.org/plugins/enable-media-replace/
If you are talking about a featured image on each post, the wordpress hook is the_post_thumbnail(); You may be able to find that on the template you are working with and remove it? Images embedded in posts or pages would be different. https://codex.wordpress.org/Function_Reference/the_post_thumbnail
OK I have found out a way to do this. With the plugin, with some checkboxes I am setting a crop option in the db in wp_options table, just like WP does it for the thumbnail, medium and large sizes. So my big image sets the add_option(‘big_crop’, true) Than in functions.php I do: if ( … Read more