Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I need some help with wordpress, I'm not too experienced with it, and I need to add multiple pdf to the post/page edit screen back-end and display then the added files on the front-end to let the user download them. I've found this article but I'm not sure if this is the way to follow, I will not know the labels and I'm not sure if inside a custom metabox is possible to create dynamic fields (add more fields like label and file if needed). I don't want to use a bloated plugin, how I can proceed?
The easiest way to do this is upload the PDF using the media uploader and then linking them in the frontend while creating a post.
A simple sample at - https://www.wpmadesimple.org/supplementary-guides/adding-pdf-documents/
Let me know if you need more help. This is without a plugin, though there might be more solutions like CPT/Plugins but that is based on your needs.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am working on theme development in wordpress (and i am new to wordpress). i have started with Sage theme from Roots.
To archive what i need added image below
I am using Content Post Type UI plugin to do this. I have no idea how to do this any help for tutorials would really appreciated.
Thanks
Sandeep
You need to add this in supports
see this in screenshots
http://awesomescreenshot.com/0595nlpbde
Have you check those options when you created the post type?
See this screenshots
http://awesomescreenshot.com/0705nlqdff
You need to create custom post type by user plugin content post type ui plugin and then add your title content and image in each post and fetch all posts on front end that's it.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I just want anyone to correct me if I'm wrong. Can I create a CMS by making a file where you log in as an admin and then you can write an article and send it to a database table. In another file display all articles from the table with ORDER BY id. To delete you simply make a delete script. Do I have to use any other languages like xml or something? Thanks!
The question: Can I make a simple cms by just using PHP and HTML?
No, you don't need other languages.
PHP and MySQL should be sufficient.
Well, the way the articles are displayed depends of HTML, CSS or JS codes you use.
I'm not quite sure what you're asking exactly. But you could easily write something like that in just PHP and HTML, and use a database to store the information.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I am trying to create a WordPress theme and need to be able to change the images on each page outside the WP text editor. Can this be achived without plugins?
Many thanks for you help.
You can use FTP Manager and replace old images with the new ones.
do you mean you don't just want to use the featured image on a page? - you can create a different template for each page with its own image on. For example if your site has three pages, home, about and contact for example, in your themes folder, saving page.php as page-home.php, page-about.php and page-contact.php is one way to do it. - alternatively use different featured images on each page.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
How can I automatically create a post to another Wordpress site that I own with the same content that I used on the post on my Main Wordpress site.
e.g; whenever I post something on ABC.COM it should automatically be posted on the DEF.COM website as well, exact same content along with the same title.
Let me know if anything like that exist in Wordpress plugins or anything that can make this possible.
Thanks
you must enable the wordpress Network in order to do it, kindly have look at here WPMU, thereafter you can share the post via another wordpress website in your network. using this ThreeWP Broadcast plugin
I think the best way is to use a RSS Widget. Try this link : http://wordpress.org/plugins/kb-advanced-rss-widget/
You can also try : http://www.codeigniter.in/blog/post/how-to-get-posts-from-a-wordpress-site-to-other-sites-hosted-in-same-server
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I am facing a problem while creating a dynamic website. I am building it for some pharma company, which have many products. The problem is, every product have different sections of description, and have to be formatted differently. I wanted to store all the product descriptions in the database, but at the same time preserve the formatting of each description. I also plan to provide an admin interface, where they could edit the product information themselves.
I could use Joomla or any other CMS for that purpose, but i wanted to know if i want to build such a system of my own, where i could format the text in an editor and them save that thing into database and when i retrieve it, i get the same formatting. How could i do this?
Also i wanted to do this in PHP.
Thanks
-- Mohit
Just use a WYSIWYG editor like ckEditor or TinyMce. That will handle the text formatting.. then you jsut store in your database.